Skip to content

Commit

Permalink
Fix metadata to support Python 3.12 (#1994)
Browse files Browse the repository at this point in the history
  • Loading branch information
Di-Is authored May 24, 2024
1 parent 9b82afb commit 31b5275
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ def has_ext_modules(self):
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
Expand All @@ -167,7 +168,7 @@ def has_ext_modules(self):
],
keywords="tensorflow io machine learning",
packages=setuptools.find_packages(where=".", exclude=exclude),
python_requires=">=3.7, <3.12",
python_requires=">=3.7, <3.13",
install_requires=install_requires,
extras_require={
"tensorflow": [require],
Expand Down

0 comments on commit 31b5275

Please sign in to comment.