Skip to content
Merged
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
5 changes: 0 additions & 5 deletions cpython-unix/build-cpython.sh
Original file line number Diff line number Diff line change
Expand Up @@ -607,11 +607,6 @@ if [[ -n "${PYTHON_MEETS_MINIMUM_VERSION_3_14}" ]]; then
patch -p1 -i "${ROOT}/patch-python-configure-hacl-no-simd.patch"
fi

# See https://github.com/python/cpython/issues/149285
if [[ "${PYTHON_MAJMIN_VERSION}" = "3.14" ]]; then
patch -p1 -i "${ROOT}/patch-test-xml-etree-deepcopy-recursion-depth-3.14.patch"
fi

# We use ndbm on macOS and BerkeleyDB elsewhere.
if [[ "${PYBUILD_PLATFORM}" = macos* ]]; then
CONFIGURE_FLAGS="${CONFIGURE_FLAGS} --with-dbmliborder=ndbm"
Expand Down
12 changes: 6 additions & 6 deletions cpython-unix/patch-jit-llvm-version-3.14.patch
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
diff --git a/Tools/jit/_llvm.py b/Tools/jit/_llvm.py
--- a/Tools/jit/_llvm.py
+++ b/Tools/jit/_llvm.py
@@ -8,7 +8,7 @@
import subprocess
import typing
@@ -10,7 +10,7 @@ import typing

import _targets

-_LLVM_VERSION = 19
+_LLVM_VERSION = 22
_LLVM_VERSION_PATTERN = re.compile(rf"version\s+{_LLVM_VERSION}\.\d+\.\d+\S*\s+")

_P = typing.ParamSpec("_P")
_LLVM_VERSION_PATTERN = re.compile(
rf"(?<!Apple )(LLVM|clang) version\s+{_LLVM_VERSION}\.\d+\.\d+\S*\s+"
)

This file was deleted.

4 changes: 2 additions & 2 deletions pythonbuild/downloads.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@
},
"cpython-3.14": {
"url": "https://www.python.org/ftp/python/3.14.5/Python-3.14.5rc1.tar.xz",
"size": 23895772,
"sha256": "f767b809df4376dd3dffd62a2e3ce90646a84cac04d0235943bc1f0c44c95780",
"size": 23894408,
"sha256": "67ee56f36fc22e5ada84d452430362e71081804c4f85c33dc5bf4206c27f973c",
"version": "3.14.5rc1",
"licenses": ["Python-2.0", "CNRI-Python"],
"license_file": "LICENSE.cpython.txt",
Expand Down
Loading