Skip to content

Bump to CPython 3.14.0b3 #663

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions cpython-unix/build-cpython.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,6 @@ else
patch -p1 -i ${ROOT}/patch-xopen-source-ios-legacy.patch
fi

# See https://github.com/python/cpython/pull/135146
# TODO(zanieb): Drop in 3.14b3
if [ -n "${PYTHON_MEETS_MINIMUM_VERSION_3_14}" ]; then
patch -p1 -i ${ROOT}/patch-static-remote-debug-3.14.patch
fi

# LIBTOOL_CRUFT is unused and breaks cross-compiling on macOS. Nuke it.
# Submitted upstream at https://github.com/python/cpython/pull/101048.
if [ -n "${PYTHON_MEETS_MAXIMUM_VERSION_3_11}" ]; then
Expand Down Expand Up @@ -485,7 +479,9 @@ if [ -n "${CPYTHON_OPTIMIZED}" ]; then
fi

# Respect CFLAGS during JIT compilation.
# Backports https://github.com/python/cpython/pull/134276
#
# Backports https://github.com/python/cpython/pull/134276 which we're trying to get released
# in 3.14, but is currently only in 3.15+.
if [ -n "${PYTHON_MEETS_MINIMUM_VERSION_3_14}" ]; then
patch -p1 -i ${ROOT}/patch-jit-cflags-314.patch
elif [ -n "${PYTHON_MEETS_MINIMUM_VERSION_3_13}" ]; then
Expand Down
22 changes: 0 additions & 22 deletions cpython-unix/patch-static-remote-debug-3.14.patch

This file was deleted.

8 changes: 4 additions & 4 deletions pythonbuild/downloads.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@
"python_tag": "cp313",
},
"cpython-3.14": {
"url": "https://www.python.org/ftp/python/3.14.0/Python-3.14.0b2.tar.xz",
"size": 23579860,
"sha256": "7ac9e84844bbc0a5a8f1f79a37a68b3b8caf2a58b4aa5999c49227cb36e70ea6",
"version": "3.14.0b2",
"url": "https://www.python.org/ftp/python/3.14.0/Python-3.14.0b3.tar.xz",
"size": 23626928,
"sha256": "c6f48bf51f01f50d87007a445dd7afe4a4c7a87ab482570be924c1ddfd0d3682",
"version": "3.14.0b3",
"licenses": ["Python-2.0", "CNRI-Python"],
"license_file": "LICENSE.cpython.txt",
"python_tag": "cp314",
Expand Down
Loading