mirror of
https://github.com/django/django.git
synced 2025-10-09 18:12:39 +00:00
Fixed #32355 -- Dropped support for Python 3.6 and 3.7
This commit is contained in:
parent
9c6ba87692
commit
ec0ff40631
33 changed files with 59 additions and 274 deletions
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ from distutils.sysconfig import get_python_lib
|
|||
from setuptools import setup
|
||||
|
||||
CURRENT_PYTHON = sys.version_info[:2]
|
||||
REQUIRED_PYTHON = (3, 6)
|
||||
REQUIRED_PYTHON = (3, 8)
|
||||
|
||||
# This check and everything above must remain compatible with Python 2.7.
|
||||
if CURRENT_PYTHON < REQUIRED_PYTHON:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue