1
0
mirror of https://github.com/django/django.git synced 2025-03-09 17:02:43 +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:
Carlton Gibson 2021-02-10 15:56:30 +01:00 committed by Carlton Gibson
parent 0102b98648
commit 4372233ebf

View File

@ -9,6 +9,8 @@ from distutils.version import LooseVersion
# or later". So that third-party apps can use these values, each constant # 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 # should remain as long as the oldest supported Django version supports that
# Python version. # Python version.
PY36 = sys.version_info >= (3, 6)
PY37 = sys.version_info >= (3, 7)
PY38 = sys.version_info >= (3, 8) PY38 = sys.version_info >= (3, 8)
PY39 = sys.version_info >= (3, 9) PY39 = sys.version_info >= (3, 9)