Skip to content

Commit ae58c49

Browse files
committed
Bump embedded CPython to 3.14.2
1 parent 86f8ff0 commit ae58c49

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
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.13.7', description: 'Version of CPython to ship')
1+
option('cpython_distrib_version', type: 'string', value: '3.14.2', description: 'Version of CPython to ship')
22
option('gdextension_path', type: 'string', value: '', description: 'Use GDExtension API at this location instead of generating it from Godot binary')
33
option('godot_version', type: 'string', value: '4.4.1', description: 'Version of Godot to generate GDExtension API from')
44
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)')

β€Žscripts/python_distrib.pyβ€Ž

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

1313
PREBUILDS_BASE_URL = "https://github.com/astral-sh/python-build-standalone/releases/download"
1414
PLATFORM_TO_PREBUILDS = {
15+
"3.14.2": {
16+
"linux-x86_64": f"{PREBUILDS_BASE_URL}/20251205/cpython-3.14.2+20251205-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst",
17+
"windows-x86": f"{PREBUILDS_BASE_URL}/20251205/cpython-3.14.2+20251205-i686-pc-windows-msvc-pgo-full.tar.zst",
18+
"windows-x86_64": f"{PREBUILDS_BASE_URL}/20251205/cpython-3.14.2+20251205-x86_64-pc-windows-msvc-pgo-full.tar.zst",
19+
"macos-x86_64": f"{PREBUILDS_BASE_URL}/20251205/cpython-3.14.2+20251205-x86_64-apple-darwin-pgo+lto-full.tar.zst",
20+
},
1521
"3.13.7": {
1622
"linux-x86_64": f"{PREBUILDS_BASE_URL}/20250902/cpython-3.13.7+20250902-x86_64_v3-unknown-linux-gnu-pgo+lto-full.tar.zst",
1723
"windows-x86": f"{PREBUILDS_BASE_URL}/20250902/cpython-3.13.7+20250902-i686-pc-windows-msvc-pgo-full.tar.zst",

0 commit comments

Comments
Β (0)