Skip to content

Commit 446af59

Browse files
committedOct 20, 2020
py36
1 parent e83d43a commit 446af59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ def _pyimp():
2222
E_UNSUPPORTED_PYTHON = '%s 1.0 requires %%s %%s or later!' % (NAME,)
2323

2424
PYIMP = _pyimp()
25-
PY35_OR_LESS = sys.version_info < (3, 6)
25+
PY36_OR_LESS = sys.version_info < (3, 6)
2626
PYPY_VERSION = getattr(sys, 'pypy_version_info', None)
2727
PYPY24_ATLEAST = PYPY_VERSION and PYPY_VERSION >= (2, 4)
2828

29-
if PY35_OR_LESS and not PYPY24_ATLEAST:
29+
if PY36_OR_LESS and not PYPY24_ATLEAST:
3030
raise Exception(E_UNSUPPORTED_PYTHON % (PYIMP, '3.6'))
3131

3232
# -*- Classifiers -*-

0 commit comments

Comments
 (0)
Please sign in to comment.