Update supported python versions

... according to the versions actually tested now.
This commit is contained in:
Takashi Kajinami 2024-03-29 16:30:34 +09:00 committed by arp102
parent 64e4f18dd0
commit cb11131010
1 changed files with 7 additions and 6 deletions

View File

@ -57,6 +57,7 @@ setuptools.setup(
"six",
"sqlalchemy"
],
python_requires=">= 3.8",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
@ -65,11 +66,11 @@ setuptools.setup(
"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",
],
)