66import re
77from 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
1212here = os .path .abspath (os .path .dirname (__file__ ))
1313with 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