Skip to content

Commit

Permalink
setup.py: Fix metadata to indicate currently supported Python >= 3.9
Browse files Browse the repository at this point in the history
fixes tensorflow#2036

Signed-off-by: Ievgen Popovych <[email protected]>
  • Loading branch information
Jmennius committed Jul 17, 2024
1 parent 7b28ee2 commit 1fa749e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,6 @@ def has_ext_modules(self):
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -168,7 +166,7 @@ def has_ext_modules(self):
],
keywords="tensorflow io machine learning",
packages=setuptools.find_packages(where=".", exclude=exclude),
python_requires=">=3.7, <3.13",
python_requires=">=3.9, <3.13",
install_requires=install_requires,
extras_require={
"tensorflow": [require],
Expand Down

0 comments on commit 1fa749e

Please sign in to comment.