From 681ae346998579a788a5481420f2fad71c51e6f3 Mon Sep 17 00:00:00 2001 From: cpe-image-bot Date: Fri, 8 May 2026 15:35:31 +0000 Subject: [PATCH] Publish v3.14.5rc1. [release] --- 3.14/Dockerfile | 6 +++--- 3.14/browsers/Dockerfile | 2 +- 3.14/node/Dockerfile | 2 +- GEN-CHECK | 2 +- build-images.sh | 9 +++------ 5 files changed, 9 insertions(+), 12 deletions(-) diff --git a/3.14/Dockerfile b/3.14/Dockerfile index 397e4b0..6f81c10 100644 --- a/3.14/Dockerfile +++ b/3.14/Dockerfile @@ -12,8 +12,8 @@ LABEL maintainer="CircleCI Execution Team " ENV PYENV_ROOT=/home/circleci/.pyenv \ PATH=/home/circleci/.pyenv/shims:/home/circleci/.pyenv/bin:/home/circleci/.poetry/bin:$PATH \ - PYTHON_VERSION=3.14.4 \ - PIPENV_DEFAULT_PYTHON_VERSION=3.14.4 + PYTHON_VERSION=3.14.5rc1 \ + PIPENV_DEFAULT_PYTHON_VERSION=3.14.5rc1 RUN sudo apt-get update && sudo apt-get install -y \ build-essential \ @@ -42,7 +42,7 @@ RUN sudo apt-get update && sudo apt-get install -y \ curl -sSL "https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer" | bash && \ sudo rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* -RUN env PYTHON_CONFIGURE_OPTS="--enable-shared --enable-optimizations" pyenv install 3.14.4 && pyenv global 3.14.4 +RUN env PYTHON_CONFIGURE_OPTS="--enable-shared --enable-optimizations" pyenv install 3.14.5rc1 && pyenv global 3.14.5rc1 RUN python --version && \ pip --version && \ diff --git a/3.14/browsers/Dockerfile b/3.14/browsers/Dockerfile index 1f4a3b8..f6f8fd8 100644 --- a/3.14/browsers/Dockerfile +++ b/3.14/browsers/Dockerfile @@ -1,6 +1,6 @@ # vim:set ft=dockerfile: -FROM cimg/python:3.14.4-node +FROM cimg/python:3.14.5rc1-node LABEL maintainer="CircleCI Community & Partner Engineering Team " diff --git a/3.14/node/Dockerfile b/3.14/node/Dockerfile index 67d2cea..aaf2767 100644 --- a/3.14/node/Dockerfile +++ b/3.14/node/Dockerfile @@ -1,6 +1,6 @@ # vim:set ft=dockerfile: -FROM cimg/python:3.14.4 +FROM cimg/python:3.14.5rc1 LABEL maintainer="Community & Partner Engineering Team " diff --git a/GEN-CHECK b/GEN-CHECK index f4e6760..ef6433d 100644 --- a/GEN-CHECK +++ b/GEN-CHECK @@ -1 +1 @@ -GEN_CHECK=(3.14.4 3.13.13) +GEN_CHECK=(3.14.5rc1) diff --git a/build-images.sh b/build-images.sh index f28d0d6..699a9a3 100755 --- a/build-images.sh +++ b/build-images.sh @@ -4,9 +4,6 @@ set -eo pipefail docker context create cimg docker buildx create --use cimg -docker buildx build --platform=linux/amd64 --file 3.14/Dockerfile -t cimg/python:3.14.4 -t cimg/python:3.14 --push . -docker buildx build --platform=linux/amd64 --file 3.14/node/Dockerfile -t cimg/python:3.14.4-node -t cimg/python:3.14-node --push . -docker buildx build --platform=linux/amd64 --file 3.14/browsers/Dockerfile -t cimg/python:3.14.4-browsers -t cimg/python:3.14-browsers --push . -docker buildx build --platform=linux/amd64 --file 3.13/Dockerfile -t cimg/python:3.13.13 -t cimg/python:3.13 --push . -docker buildx build --platform=linux/amd64 --file 3.13/node/Dockerfile -t cimg/python:3.13.13-node -t cimg/python:3.13-node --push . -docker buildx build --platform=linux/amd64 --file 3.13/browsers/Dockerfile -t cimg/python:3.13.13-browsers -t cimg/python:3.13-browsers --push . +docker buildx build --platform=linux/amd64,linux/arm64 --file 3.14/Dockerfile -t cimg/python:3.14.5rc1 -t cimg/python:3.14 --push . +docker buildx build --platform=linux/amd64,linux/arm64 --file 3.14/node/Dockerfile -t cimg/python:3.14.5rc1-node -t cimg/python:3.14-node --push . +docker buildx build --platform=linux/amd64 --file 3.14/browsers/Dockerfile -t cimg/python:3.14.5rc1-browsers -t cimg/python:3.14-browsers --push .