Skip to content
Open
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
4 changes: 2 additions & 2 deletions .builders/images/linux-aarch64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ RUN yum install -y perl-IPC-Cmd perl-CPANPLUS perl-core && \
ldconfig

# Compile and install Python 3
ENV PYTHON3_VERSION=3.13.14
ENV PYTHON3_VERSION=3.13.15
RUN yum install -y libffi-devel && \
DOWNLOAD_URL="https://python.org/ftp/python/{{version}}/Python-{{version}}.tgz" \
VERSION="${PYTHON3_VERSION}" \
SHA256="5ae535a36af0ebca6fca176ecb8197f5db9c1cb8c8f0cd12cdf1787046db1f41" \
SHA256="c28d9d213c09b5b5ab2c29812950e12f746999e099b82894231be954b26baed9" \
RELATIVE_PATH="Python-{{version}}" \
bash install-from-source.sh \
--prefix=/opt/python/${PYTHON3_VERSION} \
Expand Down
4 changes: 2 additions & 2 deletions .builders/images/linux-x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ RUN yum install -y perl-IPC-Cmd perl-CPANPLUS perl-core && \
ldconfig

# Compile and install Python 3
ENV PYTHON3_VERSION=3.13.14
ENV PYTHON3_VERSION=3.13.15

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Commit regenerated dependency pins

Changing this builder image input without committing the regenerated .deps/ output leaves the dependency pin stale: in this tree python .builders/inputs_hash.py verify-resolution reports current=64fcd1a43ffa105cf54573116b2346d6ecad2f401814fe8ff63b19a8795a4948 but pinned=093306ce147e25ea78dad692d6bd55cc781d4055450457733166ab6c59f05ca8 and exits 1. The verify-deps-pin.yaml workflow runs that command on merge-queue and 7.*.* refs, so this backport is blocked (and would keep stale builder image digests) until the dependency-resolution artifacts in .deps/ are regenerated and committed.

Useful? React with 👍 / 👎.

RUN yum install -y libffi-devel && \
DOWNLOAD_URL="https://python.org/ftp/python/{{version}}/Python-{{version}}.tgz" \
VERSION="${PYTHON3_VERSION}" \
SHA256="5ae535a36af0ebca6fca176ecb8197f5db9c1cb8c8f0cd12cdf1787046db1f41" \
SHA256="c28d9d213c09b5b5ab2c29812950e12f746999e099b82894231be954b26baed9" \
RELATIVE_PATH="Python-{{version}}" \
bash install-from-source.sh --prefix=/opt/python/${PYTHON3_VERSION} --with-ensurepip=yes --enable-ipv6 --with-dbmliborder=
ENV PATH="/opt/python/${PYTHON3_VERSION}/bin:${PATH}"
Expand Down
8 changes: 4 additions & 4 deletions .builders/images/macos/pbs.env
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Python Build Standalone (PBS) pins for macOS in resolve-build-deps.
# https://astral.sh/blog/python-build-standalone
# Sourced by .github/workflows/resolve-build-deps.yaml (set -a; source ...).
PYTHON_PATCH=14
PBS_RELEASE=20260610
PBS_SHA256__aarch64=79daa8e9dea1e64ad50aebb05a807289023a474c2020b72361eb44d67fa2401e
PBS_SHA256__x86_64=064731aded38b1a12909088d40d9e0e385dc989e38a1e1de9917610254194962
PYTHON_PATCH=15
PBS_RELEASE=20260807
PBS_SHA256__aarch64=dbadb0ffe46f8bace50daaf8a0c5fc6903c003690776da9eb5269e33c856bb53
PBS_SHA256__x86_64=187eed2282e9c3a5b6b14953d564ee25a9f35cf2c209c9fa292186ee48b0e4a1
4 changes: 2 additions & 2 deletions .builders/images/windows-x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ RUN Get-RemoteFile `
Approve-File -Path $($Env:USERPROFILE + '\.cargo\bin\rustc.exe') -Hash $Env:RUSTC_HASH

# Install Python 3
ENV PYTHON_VERSION="3.13.14"
ENV PYTHON_VERSION="3.13.15"
RUN Get-RemoteFile `
-Uri https://www.python.org/ftp/python/$Env:PYTHON_VERSION/python-$Env:PYTHON_VERSION-amd64.exe `
-Path python-$Env:PYTHON_VERSION-amd64.exe `
-Hash 'c54d9b9bbb8a36e6489363ddd01139707fd781d72f1f9e90c7ec65d0061368e0'; `
-Hash 'edec09c4853aeae9ac36efb8c9f95b6b8e2fee65eee56d9767a8b7c69c574403'; `
Start-Process -Wait python-$Env:PYTHON_VERSION-amd64.exe -ArgumentList '/quiet', 'InstallAllUsers=1'; `
Remove-Item python-$Env:PYTHON_VERSION-amd64.exe; `
& 'C:\Program Files\Python313\python.exe' -m pip install --no-warn-script-location --upgrade pip; `
Expand Down
12 changes: 6 additions & 6 deletions .deps/builder_inputs.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
# Hash inputs are defined in .builders/inputs_hash.py (SHARED_INPUTS,
# RESOLUTION_INPUTS).
[resolution]
hash = "093306ce147e25ea78dad692d6bd55cc781d4055450457733166ab6c59f05ca8"
hash = "64fcd1a43ffa105cf54573116b2346d6ecad2f401814fe8ff63b19a8795a4948"

[images]
linux-aarch64 = "ea63c96fd40206a61009f98edb4a3dd1074be9ae3b9a443038e9c200ec14e1c3"
linux-x86_64 = "6d46b523e02ce64775cea5b0b0c7ccdb80e7afe75ab0d7400b2a3882a8c87da8"
macos-aarch64 = "8030280f0215ecadb364656269b2e9b3867a7858421c9526a819da8f01e74008"
macos-x86_64 = "4d6ea260748f1c62f5a52a5a10ec997269ceaa6a3d927728ec0c00b23792a381"
windows-x86_64 = "01e0e4f0bb87cb29594d4e7cebcd2e38c3e35668e66113e0031d1d256e18f0a5"
linux-aarch64 = "8c052873eae71919d7713c1ec0d01aa9493b81aff01d605244f7dc0d68e03522"
linux-x86_64 = "088fe555aba18b6975b5eb50dfa33826a3492db46234689aa2096c9dc709d666"
macos-aarch64 = "11cb376ff231bc3010a666a894554a057f6c8dfc7ed4cd130b70ff80a99bd0a0"
macos-x86_64 = "ea9a8ac31fe82deacec09a050025b69fbf061961fc2293c430c3e0cc70b0e000"
windows-x86_64 = "2eb76f338d869007ab1babaa48e664a1dfb1fdff1a49bfce37cfff8b433c50c2"
6 changes: 3 additions & 3 deletions .deps/image_digests.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"linux-aarch64": "sha256:801551596054d2a3656b07c03b20e7a1628b942b4be43233e6c4fb534665234a",
"linux-x86_64": "sha256:f9dee68bc6b99a92c0d807924528fa475a89d37b37f1dc45ef04d7a82ebdf18f",
"windows-x86_64": "sha256:50d0f6898ed7deb961bfc511f141ee77681ea832cc6af6c92b4586af06ffe5f7"
"linux-aarch64": "sha256:efd12115a86dda7e38ad75057254f29bbd04be59d8aa6698e0c2de09235e9038",
"linux-x86_64": "sha256:0d1e96eddcb298cb9624bfce4c52ee9ddcc176f8fb54c2464aa70f8bb75a84ad",
"windows-x86_64": "sha256:0e1dcf5e4f7175ea8a3c0229a831c6c5dc6fcaa16c60697faf2279e4ad79769f"
}
Loading
Loading