Skip to content

Commit db1a2ee

Browse files
committed
Adapt min python version
1 parent f58e6b0 commit db1a2ee

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import re
77
from setuptools import setup, find_packages
88

9-
if sys.version_info < (3, 7):
10-
sys.exit("ERROR: ragability requires Python 3.9+")
9+
if sys.version_info < (3, 11):
10+
sys.exit("ERROR: ragability requires Python 3.11+")
1111

1212
here = os.path.abspath(os.path.dirname(__file__))
1313
with open(os.path.join(here, "README.md")) as f:
@@ -42,7 +42,7 @@ def versionfromfile(*filepath):
4242
install_requires=[
4343
],
4444
# extras_require=get_install_extras_require(),
45-
python_requires=">=3.7",
45+
python_requires=">=3.11",
4646
tests_require=["pytest", "pytest-cov"],
4747
platforms="any",
4848
packages=find_packages(),
@@ -63,8 +63,6 @@ def versionfromfile(*filepath):
6363
# "Development Status :: 5 - Production/Stable",
6464
"Development Status :: 4 - Beta",
6565
"License :: OSI Approved :: Apache Software License",
66-
"Programming Language :: Python :: 3.9",
67-
"Programming Language :: Python :: 3.10",
6866
"Programming Language :: Python :: 3.11",
6967
"Programming Language :: Python :: 3",
7068
"Programming Language :: Python :: 3 :: Only",

0 commit comments

Comments
 (0)