Skip to content

Commit

Permalink
Python 3.8 Deprecation for TFX-bsl
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 572981361
  • Loading branch information
tfx-copybara committed Oct 12, 2023
1 parent 84ea14a commit 232982d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TFX Basic Shared Libraries

[![Python](https://img.shields.io/badge/python%20-3.8%7C3.9-blue)](https://github.com/tensorflow/tfx-bsl)
[![Python](https://img.shields.io/badge/python%7C3.9-blue)](https://github.com/tensorflow/tfx-bsl)
[![PyPI](https://badge.fury.io/py/tfx-bsl.svg)](https://badge.fury.io/py/tfx-bsl)

TFX Basic Shared Libraries (`tfx_bsl`) contains libraries shared by many
Expand Down Expand Up @@ -79,7 +79,7 @@ Then, run the following at the project root:
sudo docker-compose build manylinux2010
sudo docker-compose run -e PYTHON_VERSION=${PYTHON_VERSION} manylinux2010
```
where `PYTHON_VERSION` is one of `{38, 39}`.
where `PYTHON_VERSION` is one of `{39}`.

A wheel will be produced under `dist/`.

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
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ def select_constraint(default, nightly=None, git_master=None):
'Operating System :: POSIX :: Linux',
'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',
Expand Down Expand Up @@ -180,7 +179,7 @@ def select_constraint(default, nightly=None, git_master=None):
git_master='@git+https://github.com/tensorflow/metadata@master'),
'tensorflow-serving-api>=2.13.0,<3',
],
python_requires='>=3.8,<4',
python_requires='>=3.9,<4',
packages=find_packages(),
include_package_data=True,
package_data={'': ['*.lib', '*.pyd', '*.so']},
Expand Down

0 comments on commit 232982d

Please sign in to comment.