File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ def _pyimp():
20
20
E_UNSUPPORTED_PYTHON = f'{ NAME } 1.0 requires %s %s or later!'
21
21
22
22
PYIMP = _pyimp ()
23
- PY36_OR_LESS = sys .version_info < (3 , 6 )
23
+ PY37_OR_LESS = sys .version_info < (3 , 7 )
24
24
PYPY_VERSION = getattr (sys , 'pypy_version_info' , None )
25
- PYPY24_ATLEAST = PYPY_VERSION and PYPY_VERSION >= (2 , 4 )
25
+ PYPY73_ATLEAST = PYPY_VERSION and PYPY_VERSION >= (7 , 3 )
26
26
27
- if PY36_OR_LESS and not PYPY24_ATLEAST :
28
- raise Exception (E_UNSUPPORTED_PYTHON % (PYIMP , '3.6 ' ))
27
+ if PY37_OR_LESS and not PYPY73_ATLEAST :
28
+ raise Exception (E_UNSUPPORTED_PYTHON % (PYIMP , '3.7 ' ))
29
29
30
30
# -*- Classifiers -*-
31
31
@@ -34,7 +34,6 @@ def _pyimp():
34
34
License :: OSI Approved :: BSD License
35
35
Programming Language :: Python
36
36
Programming Language :: Python :: 3
37
- Programming Language :: Python :: 3.6
38
37
Programming Language :: Python :: 3.7
39
38
Programming Language :: Python :: 3.8
40
39
Programming Language :: Python :: 3.9
You can’t perform that action at this time.
0 commit comments