88from setuptools import find_packages , setup
99
1010CURRENT_PYTHON = sys .version_info [:2 ]
11- REQUIRED_PYTHON = (3 , 7 )
11+ REQUIRED_PYTHON = (3 , 8 )
1212
1313# This check and everything above must remain compatible with Python 2.7.
1414if CURRENT_PYTHON < REQUIRED_PYTHON :
@@ -84,7 +84,7 @@ def get_version(package):
8484 packages = find_packages (exclude = ['tests*' ]),
8585 include_package_data = True ,
8686 install_requires = ["django>=3.0" , 'backports.zoneinfo;python_version<"3.9"' ],
87- python_requires = ">=3.7 " ,
87+ python_requires = ">=3.8 " ,
8888 zip_safe = False ,
8989 classifiers = [
9090 'Development Status :: 5 - Production/Stable' ,
@@ -101,7 +101,6 @@ def get_version(package):
101101 'Operating System :: OS Independent' ,
102102 'Programming Language :: Python' ,
103103 'Programming Language :: Python :: 3' ,
104- 'Programming Language :: Python :: 3.7' ,
105104 'Programming Language :: Python :: 3.8' ,
106105 'Programming Language :: Python :: 3.9' ,
107106 'Programming Language :: Python :: 3.10' ,
0 commit comments