You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
Fix off-by-one in setup's 3.6 range comparison
This commit is contained in:
2
setup.py
2
setup.py
@@ -4,7 +4,7 @@ import sys
|
||||
"""Setup script for the 'uncompyle6' distribution."""
|
||||
|
||||
SYS_VERSION = sys.version_info[0:2]
|
||||
if not ((3, 3) <= SYS_VERSION <= (3, 5)):
|
||||
if not ((3, 3) <= SYS_VERSION < (3, 6)):
|
||||
mess = "Python Release 3.3 .. 3.5 are supported in this code branch."
|
||||
if (2, 4) <= SYS_VERSION <= (2, 7):
|
||||
mess += (
|
||||
|
@@ -14,4 +14,4 @@
|
||||
# This file is suitable for sourcing inside POSIX shell as
|
||||
# well as importing into Python
|
||||
# fmt: off
|
||||
__version__="3.8.0" # noqa
|
||||
__version__="3.8.1.dev0" # noqa
|
||||
|
Reference in New Issue
Block a user