Skip to content

Commit

Permalink
Internal only
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 572075725
  • Loading branch information
tf-metadata-team authored and tfx-copybara committed Oct 9, 2023
1 parent c65424c commit 1558be1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TensorFlow Metadata

[![Python](https://img.shields.io/badge/python%20-3.8%7C3.9-blue)](https://github.com/tensorflow/metadata)
[![Python](https://img.shields.io/badge/python%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
Expand Down
2 changes: 2 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

## Deprecations

* Deprecated Python 3.8 support.

# Version 1.14.0

## Major Features and Improvements
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ def run(self):
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
Expand All @@ -129,10 +128,10 @@ def run(self):
'googleapis-common-protos>=1.52.0,<2',
'protobuf>=3.20.3,<4.21',
],
python_requires='>=3.8,<4',
python_requires='>=3.9,<4',
packages=find_packages(),
include_package_data=True,
description=('Library and standards for schema and statistics.'),
description='Library and standards for schema and statistics.',
long_description=_LONG_DESCRIPTION,
long_description_content_type='text/markdown',
keywords='tensorflow metadata tfx',
Expand All @@ -141,4 +140,5 @@ def run(self):
cmdclass={
'build': _BuildCommand,
'bazel_build': _BazelBuildCommand,
})
},
)

0 comments on commit 1558be1

Please sign in to comment.