From cb111310101c65f0d88e82d0e4f39bc4eb707a2b Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 29 Mar 2024 16:30:34 +0900 Subject: [PATCH] Update supported python versions ... according to the versions actually tested now. --- setup.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 19904f1a..4cc8a39c 100644 --- a/setup.py +++ b/setup.py @@ -57,6 +57,7 @@ "six", "sqlalchemy" ], + python_requires=">= 3.8", classifiers=[ "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", @@ -65,11 +66,11 @@ "Operating System :: POSIX :: BSD", "Operating System :: POSIX :: Linux", "Programming Language :: Python", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], )