mirror of
https://github.com/django/django.git
synced 2025-03-09 08:52:32 +00:00
Refs #32355 -- Restored PY36 and PY37 version constants.
Partially reverts ec0ff406311de88f4e2a135d784363424fe602aa. PY36 should be removed when Django 2.2 is EOL. PY37 should be removed when Django 3.2 is EOL. Thanks to Tim Graham for the report.
This commit is contained in:
parent
0102b98648
commit
4372233ebf
@ -9,6 +9,8 @@ from distutils.version import LooseVersion
|
||||
# or later". So that third-party apps can use these values, each constant
|
||||
# should remain as long as the oldest supported Django version supports that
|
||||
# Python version.
|
||||
PY36 = sys.version_info >= (3, 6)
|
||||
PY37 = sys.version_info >= (3, 7)
|
||||
PY38 = sys.version_info >= (3, 8)
|
||||
PY39 = sys.version_info >= (3, 9)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user