Get ready for release 3.5.0

This commit is contained in:
rocky
2019-10-12 19:53:17 -04:00
parent 5cb46c2ed3
commit 0b3d6b8add
22 changed files with 329 additions and 7 deletions

View File

@@ -37,7 +37,7 @@ from xdis.util import code2num
# The byte code versions we support.
# Note: these all have to be floats
PYTHON_VERSIONS = frozenset((1.3, 1.4, 1.5,
PYTHON_VERSIONS = frozenset((1.0, 1.1, 1.3, 1.4, 1.5, 1.6,
2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7,
3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8))