Add basic bytecode and disassembly support for Python 3.12

This commit is contained in:
Michael Hansen
2023-11-09 11:11:37 -08:00
parent b32f231e33
commit 9b384ad1fa
12 changed files with 456 additions and 189 deletions

View File

@@ -30,11 +30,12 @@ PYVERS = {
'3.4': '3.4.10',
'3.5': '3.5.10',
'3.6': '3.6.15',
'3.7': '3.7.16',
'3.8': '3.8.16',
'3.9': '3.9.16',
'3.10': '3.10.9',
'3.11': '3.11.1',
'3.7': '3.7.17',
'3.8': '3.8.18',
'3.9': '3.9.18',
'3.10': '3.10.13',
'3.11': '3.11.6',
'3.12': '3.12.0',
}
OLD_PYTHONS = ('1.0', '1.1', '1.2', '1.3', '1.4', '1.5')
@@ -54,6 +55,7 @@ PYVER_CONTAINERS = {
'3.9',
'3.10',
'3.11',
'3.12',
}
CONTAINER_EXES = ['podman', 'docker']
CONTAINER_EXE_EXTRA_ARGS = {