From 1fa749e25d7dbac9a571c3ed850c4eea51996df8 Mon Sep 17 00:00:00 2001 From: Ievgen Popovych Date: Wed, 17 Jul 2024 19:45:55 +0300 Subject: [PATCH] setup.py: Fix metadata to indicate currently supported Python >= 3.9 fixes #2036 Signed-off-by: Ievgen Popovych --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 8001cbaf4..67ee3a910 100644 --- a/setup.py +++ b/setup.py @@ -152,8 +152,6 @@ def has_ext_modules(self): "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -168,7 +166,7 @@ def has_ext_modules(self): ], keywords="tensorflow io machine learning", packages=setuptools.find_packages(where=".", exclude=exclude), - python_requires=">=3.7, <3.13", + python_requires=">=3.9, <3.13", install_requires=install_requires, extras_require={ "tensorflow": [require],