77from setuptools .command .test import test as TestCommand
88
99CURRENT_PYTHON = sys .version_info [:2 ]
10- REQUIRED_PYTHON = (3 , 7 )
10+ REQUIRED_PYTHON = (3 , 8 )
1111
1212if CURRENT_PYTHON < REQUIRED_PYTHON :
1313 sys .stderr .write (
2020consider upgrading to a supported Python version.
2121
2222If you can't upgrade your Python version, you'll need to
23- pin to an older version of Requests (<2.28 ).
23+ pin to an older version of Requests (<2.32.0 ).
2424""" .format (
2525 * (REQUIRED_PYTHON + CURRENT_PYTHON )
2626 )
@@ -94,7 +94,7 @@ def run_tests(self):
9494 package_data = {"" : ["LICENSE" , "NOTICE" ]},
9595 package_dir = {"" : "src" },
9696 include_package_data = True ,
97- python_requires = ">=3.7 " ,
97+ python_requires = ">=3.8 " ,
9898 install_requires = requires ,
9999 license = about ["__license__" ],
100100 zip_safe = False ,
@@ -107,7 +107,6 @@ def run_tests(self):
107107 "Operating System :: OS Independent" ,
108108 "Programming Language :: Python" ,
109109 "Programming Language :: Python :: 3" ,
110- "Programming Language :: Python :: 3.7" ,
111110 "Programming Language :: Python :: 3.8" ,
112111 "Programming Language :: Python :: 3.9" ,
113112 "Programming Language :: Python :: 3.10" ,
0 commit comments