From 31b5275523c3274d052a811a3da12d3f9bbaac7d Mon Sep 17 00:00:00 2001 From: Di-Is Date: Fri, 24 May 2024 13:38:45 +0900 Subject: [PATCH] Fix metadata to support Python 3.12 (#1994) --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2f8c2ad3d..8001cbaf4 100644 --- a/setup.py +++ b/setup.py @@ -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", @@ -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],