Add support for Python 3.9 in pymultic.

Also updates versions for several other Python releases.
This commit is contained in:
Michael Hansen
2020-10-12 16:52:38 -07:00
parent 8460d119fd
commit 36d93bd1a5

View File

@@ -22,16 +22,17 @@ PYVERS = {
'2.4': '2.4.6',
'2.5': '2.5.6',
'2.6': '2.6.9',
'2.7': '2.7.17',
'2.7': '2.7.18',
'3.0': '3.0.1',
'3.1': '3.1.5',
'3.2': '3.2.6',
'3.3': '3.3.7',
'3.4': '3.4.10',
'3.5': '3.5.9',
'3.6': '3.6.10',
'3.7': '3.7.5',
'3.8': '3.8.1',
'3.5': '3.5.10',
'3.6': '3.6.12',
'3.7': '3.7.9',
'3.8': '3.8.6',
'3.9': '3.9.0',
}
OLD_PYTHONS = ('1.0', '1.1', '1.2', '1.3', '1.4', '1.5')