From dfff77748578cee17bf0ffd4d3e848b602c10ed5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 11 Feb 2026 14:11:26 +0000 Subject: [PATCH] Update dependency python --- .github/workflows/release-app.yml | 2 +- release/oci-full/Dockerfile | 4 ++-- release/oci-ingest/Dockerfile | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-app.yml b/.github/workflows/release-app.yml index c7f92888..c01c1afd 100644 --- a/.github/workflows/release-app.yml +++ b/.github/workflows/release-app.yml @@ -48,7 +48,7 @@ jobs: - name: Install Python uses: actions/setup-python@v6 with: - python-version: '3.13' + python-version: '3.14' - name: Install uv uses: astral-sh/setup-uv@v7 diff --git a/release/oci-full/Dockerfile b/release/oci-full/Dockerfile index 20401153..f3dc102d 100644 --- a/release/oci-full/Dockerfile +++ b/release/oci-full/Dockerfile @@ -5,7 +5,7 @@ # - https://github.com/FernandoMiguel/Buildkit#mounttypecache # Stage 1: Build wheel package -FROM python:3.13-slim-bookworm AS build +FROM python:3.14-slim-bookworm AS build # Configure operating system. ENV DEBIAN_FRONTEND=noninteractive @@ -35,7 +35,7 @@ RUN pip install build RUN python -m build --wheel ${BUILD} -FROM python:3.13-slim-bookworm AS package +FROM python:3.14-slim-bookworm AS package LABEL org.opencontainers.image.source="https://github.com/crate/cratedb-toolkit" \ org.opencontainers.image.title="cratedb-toolkit (full)" \ diff --git a/release/oci-ingest/Dockerfile b/release/oci-ingest/Dockerfile index e6bb70a1..c984ce3e 100644 --- a/release/oci-ingest/Dockerfile +++ b/release/oci-ingest/Dockerfile @@ -5,7 +5,7 @@ # - https://github.com/FernandoMiguel/Buildkit#mounttypecache # Stage 1: Build wheel package -FROM python:3.12-slim-bookworm AS build +FROM python:3.14-slim-bookworm AS build # Enable concurrent multi-arch builds. # https://github.com/docker/buildx/issues/549#issuecomment-1788297892 @@ -35,7 +35,7 @@ RUN pip install build RUN python -m build --wheel ${BUILD} -FROM python:3.12-slim-bookworm AS package +FROM python:3.14-slim-bookworm AS package LABEL org.opencontainers.image.source="https://github.com/crate/cratedb-toolkit" \ org.opencontainers.image.title="cratedb-toolkit (ingest)" \