66from setuptools import find_packages , setup
77
88CURRENT_PYTHON = sys .version_info [:2 ]
9- REQUIRED_PYTHON = (3 , 8 )
9+ REQUIRED_PYTHON = (3 , 9 )
1010
1111# This check and everything above must remain compatible with Python 2.7.
1212if CURRENT_PYTHON < REQUIRED_PYTHON :
@@ -82,7 +82,7 @@ def get_version(package):
8282 packages = find_packages (exclude = ['tests*' ]),
8383 include_package_data = True ,
8484 install_requires = ["django>=4.2" , 'backports.zoneinfo;python_version<"3.9"' ],
85- python_requires = ">=3.8 " ,
85+ python_requires = ">=3.9 " ,
8686 zip_safe = False ,
8787 classifiers = [
8888 'Development Status :: 5 - Production/Stable' ,
@@ -97,7 +97,6 @@ def get_version(package):
9797 'Operating System :: OS Independent' ,
9898 'Programming Language :: Python' ,
9999 'Programming Language :: Python :: 3' ,
100- 'Programming Language :: Python :: 3.8' ,
101100 'Programming Language :: Python :: 3.9' ,
102101 'Programming Language :: Python :: 3.10' ,
103102 'Programming Language :: Python :: 3.11' ,
0 commit comments