Skip to content

Commit ac6b311

Browse files
Update utils_thirdparty.py with python 3.11 support
Signed-off-by: Ayan Sinha Mahapatra <[email protected]>
1 parent 2f85a2c commit ac6b311

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

etc/scripts/utils_thirdparty.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,14 @@
115115
TRACE_ULTRA_DEEP = False
116116

117117
# Supported environments
118-
PYTHON_VERSIONS = "37", "38", "39", "310"
118+
PYTHON_VERSIONS = "37", "38", "39", "310", "311"
119119

120120
PYTHON_DOT_VERSIONS_BY_VER = {
121121
"37": "3.7",
122122
"38": "3.8",
123123
"39": "3.9",
124124
"310": "3.10",
125+
"311": "3.11",
125126
}
126127

127128

@@ -137,6 +138,7 @@ def get_python_dot_version(version):
137138
"38": ["cp38", "cp38m", "abi3"],
138139
"39": ["cp39", "cp39m", "abi3"],
139140
"310": ["cp310", "cp310m", "abi3"],
141+
"311": ["cp311", "cp311m", "abi3"],
140142
}
141143

142144
PLATFORMS_BY_OS = {

0 commit comments

Comments
 (0)