Loosen check to allow running from 2.4-3.10

We still only can *decompile* 2.4-3.8
This commit is contained in:
rocky
2021-10-26 06:08:17 -04:00
parent ea26084e6d
commit 5c2af69925
3 changed files with 18 additions and 6 deletions

View File

@@ -74,9 +74,9 @@ def main_bin():
if not (sys.version_info[0:2] in ((2, 6), (2, 7), (3, 0),
(3, 1), (3, 2), (3, 3),
(3, 4), (3, 5), (3, 6),
(3, 7), (3, 8)
(3, 7), (3, 8), (3, 9), (3, 10)
)):
print('Error: %s requires Python 2.6-3.8' % program,
print('Error: %s requires Python 2.4-3.10' % program,
file=sys.stderr)
sys.exit(-1)