Skip to content

Commit 5bb8614

Browse files
author
dd-agent-integrations-bot[bot]
committed
[Backport] Bump embedded Python to 3.13.15
1 parent 3df8928 commit 5bb8614

6 files changed

Lines changed: 12 additions & 11 deletions

File tree

.builders/images/linux-aarch64/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ RUN yum install -y perl-IPC-Cmd perl-CPANPLUS perl-core && \
3636
ldconfig
3737

3838
# Compile and install Python 3
39-
ENV PYTHON3_VERSION=3.13.14
39+
ENV PYTHON3_VERSION=3.13.15
4040
RUN yum install -y libffi-devel && \
4141
DOWNLOAD_URL="https://python.org/ftp/python/{{version}}/Python-{{version}}.tgz" \
4242
VERSION="${PYTHON3_VERSION}" \
43-
SHA256="5ae535a36af0ebca6fca176ecb8197f5db9c1cb8c8f0cd12cdf1787046db1f41" \
43+
SHA256="c28d9d213c09b5b5ab2c29812950e12f746999e099b82894231be954b26baed9" \
4444
RELATIVE_PATH="Python-{{version}}" \
4545
bash install-from-source.sh \
4646
--prefix=/opt/python/${PYTHON3_VERSION} \

.builders/images/linux-x86_64/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ RUN yum install -y perl-IPC-Cmd perl-CPANPLUS perl-core && \
3535
ldconfig
3636

3737
# Compile and install Python 3
38-
ENV PYTHON3_VERSION=3.13.14
38+
ENV PYTHON3_VERSION=3.13.15
3939
RUN yum install -y libffi-devel && \
4040
DOWNLOAD_URL="https://python.org/ftp/python/{{version}}/Python-{{version}}.tgz" \
4141
VERSION="${PYTHON3_VERSION}" \
42-
SHA256="5ae535a36af0ebca6fca176ecb8197f5db9c1cb8c8f0cd12cdf1787046db1f41" \
42+
SHA256="c28d9d213c09b5b5ab2c29812950e12f746999e099b82894231be954b26baed9" \
4343
RELATIVE_PATH="Python-{{version}}" \
4444
bash install-from-source.sh --prefix=/opt/python/${PYTHON3_VERSION} --with-ensurepip=yes --enable-ipv6 --with-dbmliborder=
4545
ENV PATH="/opt/python/${PYTHON3_VERSION}/bin:${PATH}"

.builders/images/macos/pbs.env

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Python Build Standalone (PBS) pins for macOS in resolve-build-deps.
22
# https://astral.sh/blog/python-build-standalone
33
# Sourced by .github/workflows/resolve-build-deps.yaml (set -a; source ...).
4-
PYTHON_PATCH=14
5-
PBS_RELEASE=20260610
6-
PBS_SHA256__aarch64=79daa8e9dea1e64ad50aebb05a807289023a474c2020b72361eb44d67fa2401e
7-
PBS_SHA256__x86_64=064731aded38b1a12909088d40d9e0e385dc989e38a1e1de9917610254194962
4+
PYTHON_PATCH=15
5+
PBS_RELEASE=20260807
6+
PBS_SHA256__aarch64=dbadb0ffe46f8bace50daaf8a0c5fc6903c003690776da9eb5269e33c856bb53
7+
PBS_SHA256__x86_64=187eed2282e9c3a5b6b14953d564ee25a9f35cf2c209c9fa292186ee48b0e4a1

.builders/images/windows-x86_64/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ RUN Get-RemoteFile `
8585
Approve-File -Path $($Env:USERPROFILE + '\.cargo\bin\rustc.exe') -Hash $Env:RUSTC_HASH
8686

8787
# Install Python 3
88-
ENV PYTHON_VERSION="3.13.14"
88+
ENV PYTHON_VERSION="3.13.15"
8989
RUN Get-RemoteFile `
9090
-Uri https://www.python.org/ftp/python/$Env:PYTHON_VERSION/python-$Env:PYTHON_VERSION-amd64.exe `
9191
-Path python-$Env:PYTHON_VERSION-amd64.exe `
92-
-Hash 'c54d9b9bbb8a36e6489363ddd01139707fd781d72f1f9e90c7ec65d0061368e0'; `
92+
-Hash 'edec09c4853aeae9ac36efb8c9f95b6b8e2fee65eee56d9767a8b7c69c574403'; `
9393
Start-Process -Wait python-$Env:PYTHON_VERSION-amd64.exe -ArgumentList '/quiet', 'InstallAllUsers=1'; `
9494
Remove-Item python-$Env:PYTHON_VERSION-amd64.exe; `
9595
& 'C:\Program Files\Python313\python.exe' -m pip install --no-warn-script-location --upgrade pip; `

ddev/changelog.d/24828.fixed

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump the pinned embedded Python version from 3.13.14 to 3.13.15.

ddev/src/ddev/repo/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212

1313
# This is automatically maintained
1414
PYTHON_VERSION = '3.13'
15-
PYTHON_VERSION_FULL = '3.13.14'
15+
PYTHON_VERSION_FULL = '3.13.15'

0 commit comments

Comments
 (0)