aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2025-05-31 13:54:41 +0100
committerGravatar Chris Lovering <[email protected]>2025-05-31 13:54:41 +0100
commit699678aba29deb0df9325eebad1901b50bce53ba (patch)
tree3a035b170d92539189a5da61a3e4dd890c5b0904
parentPython 3.14 (#236) (diff)
Pin 3.14 version to beta-2
-rw-r--r--Dockerfile4
-rw-r--r--Makefile2
2 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 0421d78..785f165 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.5.7 --depth 1 https://github.com/pyenv/pyenv.git $PYENV_ROOT
+RUN git clone -b v2.6.0 --depth 1 https://github.com/pyenv/pyenv.git $PYENV_ROOT
COPY --link scripts/build_python.sh /
@@ -41,7 +41,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-dev
+RUN /build_python.sh 3.14.0b2
# ------------------------------------------------------------------------------
FROM python:3.13-slim-bookworm AS base
diff --git a/Makefile b/Makefile
index 9ea46cb..0dcc64f 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ lint: setup
test:
docker compose build -q --force-rm
docker compose run --entrypoint /bin/bash --rm snekbox -c \
- 'coverage run -m unittest; e=$?; chown --reference=. .coverage; exit $e'
+ 'coverage run -m unittest; e=$?; chown --reference=. .coverage; exit $e'
.PHONY: report
report: setup