Skip to content

Commit b60c8f8

Browse files
committed
Bump python-build-standalone to 20230116 with CPython 3.11.1
1 parent 1ed10bb commit b60c8f8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

β€Žmeson_options.txtβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
option('cpython_distrib_version', type: 'string', value: '3.10.8', description: 'Version of CPython to ship')
1+
option('cpython_distrib_version', type: 'string', value: '3.11.1', description: 'Version of CPython to ship')
22
option('godot_headers', type: 'string', value: 'godot_headers', description: 'Path to Godot extension headers directory')
33
option('real_is_double', type: 'boolean', value: false, description: 'Built for Godot with 64bits floating point numbers (i.e. double) in builtins instead of 32bits (i.e. float)')
44
option('classes_sample', type: 'boolean', value: false, description: 'Only bind a subset of Godot classes (useful for tests&debug for faster build time)')

β€Žscripts/python_distrib.pyβ€Ž

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212

1313
PREBUILDS_BASE_URL = "https://github.com/indygreg/python-build-standalone/releases/download"
1414
PLATFORM_TO_PREBUILDS = {
15-
"3.10.8": {
16-
"linux-x86_64": f"{PREBUILDS_BASE_URL}/20221106/cpython-3.10.8+20221106-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst",
17-
"windows-x86": f"{PREBUILDS_BASE_URL}/20221106/cpython-3.10.8+20221106-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
18-
"windows-x86_64": f"{PREBUILDS_BASE_URL}/20221106/cpython-3.10.8+20221106-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
19-
"macos-x86_64": f"{PREBUILDS_BASE_URL}/20221106/cpython-3.10.8+20221106-x86_64-apple-darwin-pgo+lto-full.tar.zst",
15+
"3.11.1": {
16+
"linux-x86_64": f"{PREBUILDS_BASE_URL}/20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst",
17+
"windows-x86": f"{PREBUILDS_BASE_URL}/20230116/cpython-3.11.1+20230116-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
18+
"windows-x86_64": f"{PREBUILDS_BASE_URL}/20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
19+
"macos-x86_64": f"{PREBUILDS_BASE_URL}/20230116/cpython-3.11.1+20230116-x86_64-apple-darwin-pgo+lto-full.tar.zst",
2020
}
2121
}
2222

0 commit comments

Comments
Β (0)