Skip to content

Commit 31b5275

Browse files
authored
Fix metadata to support Python 3.12 (#1994)
1 parent 9b82afb commit 31b5275

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ def has_ext_modules(self):
157157
"Programming Language :: Python :: 3.9",
158158
"Programming Language :: Python :: 3.10",
159159
"Programming Language :: Python :: 3.11",
160+
"Programming Language :: Python :: 3.12",
160161
"Programming Language :: Python :: 3 :: Only",
161162
"Topic :: Scientific/Engineering",
162163
"Topic :: Scientific/Engineering :: Mathematics",
@@ -167,7 +168,7 @@ def has_ext_modules(self):
167168
],
168169
keywords="tensorflow io machine learning",
169170
packages=setuptools.find_packages(where=".", exclude=exclude),
170-
python_requires=">=3.7, <3.12",
171+
python_requires=">=3.7, <3.13",
171172
install_requires=install_requires,
172173
extras_require={
173174
"tensorflow": [require],

0 commit comments

Comments
 (0)