From 0b88a7422f864fe4d7776ba563855b0bde1cb735 Mon Sep 17 00:00:00 2001 From: tf-metadata-team Date: Thu, 16 Mar 2023 12:32:32 -0700 Subject: [PATCH] Update python version constraint and update RELEASE.md PiperOrigin-RevId: 517196123 --- README.md | 2 +- setup.py | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b32d999..f3ed07c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # TensorFlow Metadata -[![Python](https://img.shields.io/badge/python%20-3.8%7C3.9%7C3.10-blue)](https://github.com/tensorflow/metadata) +[![Python](https://img.shields.io/badge/python%20-3.8%7C3.9-blue)](https://github.com/tensorflow/metadata) [![PyPI](https://badge.fury.io/py/tensorflow-metadata.svg)](https://badge.fury.io/py/tensorflow-metadata) TensorFlow Metadata provides standard representations for metadata that are diff --git a/setup.py b/setup.py index a462a73..24c37c5 100644 --- a/setup.py +++ b/setup.py @@ -116,7 +116,6 @@ def run(self): 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', - 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Scientific/Engineering :: Artificial Intelligence', 'Topic :: Scientific/Engineering :: Mathematics', @@ -130,8 +129,7 @@ def run(self): 'googleapis-common-protos>=1.52.0,<2', 'protobuf>=3.13,<4', ], - # TODO(b/236220616): Change the lower bound of this range to 3.8. - python_requires='>=3.7,<4', + python_requires='>=3.8,<4', packages=find_packages(), include_package_data=True, description=('Library and standards for schema and statistics.'),