aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2025-10-08 23:17:36 +0100
committerGravatar Joe Banks <[email protected]>2025-10-08 23:17:36 +0100
commit00deacb7287e3db0a0ef1e5464abaf56bd32d883 (patch)
treed7e3d43c0761c603e9cbcde34ff7f19f71ec7236
parentUpdate pyenv to 2.6.9 (diff)
Revert "Update to use 3.14 release" and "Update pyenv to 2.6.9"
This reverts commit c7fae913df7c186ea12467b10afb56b2d00c71a7 and b7e0aeca1ebeab72fd47c7cc41b54a45542406e9. 3.14.0 was unable to build in CI so reverting ahead of a PR that adds this new version with some additional testing.
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 2e0ff1f..dd7130a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -29,7 +29,7 @@ RUN apt-get -y update \
tk-dev \
&& rm -rf /var/lib/apt/lists/*
-RUN git clone -b v2.6.9 --depth 1 https://github.com/pyenv/pyenv.git $PYENV_ROOT
+RUN git clone -b v2.6.5 --depth 1 https://github.com/pyenv/pyenv.git $PYENV_ROOT
COPY --link scripts/build_python.sh /
@@ -42,7 +42,7 @@ FROM builder-py-base AS builder-py-3_13t
RUN /build_python.sh 3.13.2t
# ------------------------------------------------------------------------------
FROM builder-py-base AS builder-py-3_14
-RUN /build_python.sh 3.14.0
+RUN /build_python.sh 3.14.0rc1
# ------------------------------------------------------------------------------
FROM python:3.13-slim-bookworm AS base