We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e83d43a commit 446af59Copy full SHA for 446af59
setup.py
@@ -22,11 +22,11 @@ def _pyimp():
22
E_UNSUPPORTED_PYTHON = '%s 1.0 requires %%s %%s or later!' % (NAME,)
23
24
PYIMP = _pyimp()
25
-PY35_OR_LESS = sys.version_info < (3, 6)
+PY36_OR_LESS = sys.version_info < (3, 6)
26
PYPY_VERSION = getattr(sys, 'pypy_version_info', None)
27
PYPY24_ATLEAST = PYPY_VERSION and PYPY_VERSION >= (2, 4)
28
29
-if PY35_OR_LESS and not PYPY24_ATLEAST:
+if PY36_OR_LESS and not PYPY24_ATLEAST:
30
raise Exception(E_UNSUPPORTED_PYTHON % (PYIMP, '3.6'))
31
32
# -*- Classifiers -*-
0 commit comments