Skip to content

Commit 416bae5

Browse files
authored
Allow installing for Python 3.11 (#1740)
1 parent 45ee85c commit 416bae5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ def has_ext_modules(self):
156156
"Programming Language :: Python :: 3.8",
157157
"Programming Language :: Python :: 3.9",
158158
"Programming Language :: Python :: 3.10",
159+
"Programming Language :: Python :: 3.11",
159160
"Programming Language :: Python :: 3 :: Only",
160161
"Topic :: Scientific/Engineering",
161162
"Topic :: Scientific/Engineering :: Mathematics",
@@ -166,7 +167,7 @@ def has_ext_modules(self):
166167
],
167168
keywords="tensorflow io machine learning",
168169
packages=setuptools.find_packages(where=".", exclude=exclude),
169-
python_requires=">=3.7, <3.11",
170+
python_requires=">=3.7, <3.12",
170171
install_requires=install_requires,
171172
extras_require={
172173
"tensorflow": [require],

0 commit comments

Comments
 (0)