This is an automated email from the ASF dual-hosted git repository. hubcio pushed a commit to branch deps/infra-batch in repository https://gitbox.apache.org/repos/asf/iggy.git
commit 01eb13172ff6488dad5f2b4c66916ee42e173984 Author: Hubert Gruszecki <[email protected]> AuthorDate: Fri May 29 00:08:02 2026 +0200 fix(deps): keep python base images at 3.10 for version-sync The repo pins the Python interpreter to 3.10 across SDK files, CI and Dockerfiles (scripts/ci/sync-python-version.sh derives it from foreign/python/pyproject.toml). Dependabot bumped the devcontainer image to 3.13 and Dockerfile.test to 3.14.5, failing the sync check. Revert those two base images to 3.10; the other infra bumps in this batch stay. --- foreign/python/.devcontainer/Dockerfile | 2 +- foreign/python/Dockerfile.test | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/foreign/python/.devcontainer/Dockerfile b/foreign/python/.devcontainer/Dockerfile index 8fabee400..dccd31551 100644 --- a/foreign/python/.devcontainer/Dockerfile +++ b/foreign/python/.devcontainer/Dockerfile @@ -27,7 +27,7 @@ # or stability of the code, it does indicate that the project has yet to be # fully endorsed by the ASF. -FROM mcr.microsoft.com/devcontainers/python:3.13-bullseye +FROM mcr.microsoft.com/devcontainers/python:1-3.10-bullseye ENV VIRTUAL_ENV=/opt/venv RUN python -m venv $VIRTUAL_ENV diff --git a/foreign/python/Dockerfile.test b/foreign/python/Dockerfile.test index dc77faf68..8a3cb585c 100644 --- a/foreign/python/Dockerfile.test +++ b/foreign/python/Dockerfile.test @@ -27,7 +27,7 @@ # or stability of the code, it does indicate that the project has yet to be # fully endorsed by the ASF. # Multi-stage build for Python SDK testing -FROM python:3.14.5-slim AS base +FROM python:3.10-slim AS base # Install system dependencies RUN apt-get update && apt-get install -y \
