Skip to content

Commit e42be7b

Browse files
authored
setup.py: Fix metadata to indicate currently supported Python >= 3.9 (#2037)
fixes #2036 Signed-off-by: Ievgen Popovych <[email protected]>
1 parent 7940c75 commit e42be7b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

setup.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,6 @@ def has_ext_modules(self):
152152
"Intended Audience :: Science/Research",
153153
"License :: OSI Approved :: Apache Software License",
154154
"Programming Language :: Python :: 3",
155-
"Programming Language :: Python :: 3.7",
156-
"Programming Language :: Python :: 3.8",
157155
"Programming Language :: Python :: 3.9",
158156
"Programming Language :: Python :: 3.10",
159157
"Programming Language :: Python :: 3.11",
@@ -168,7 +166,7 @@ def has_ext_modules(self):
168166
],
169167
keywords="tensorflow io machine learning",
170168
packages=setuptools.find_packages(where=".", exclude=exclude),
171-
python_requires=">=3.7, <3.13",
169+
python_requires=">=3.9, <3.13",
172170
install_requires=install_requires,
173171
extras_require={
174172
"tensorflow": [require],

0 commit comments

Comments
 (0)