From dfea3819586a5ea92075f6df5591a6d9b526d588 Mon Sep 17 00:00:00 2001 From: Eero af Heurlin Date: Thu, 13 Nov 2025 10:45:29 +0200 Subject: [PATCH 1/3] chore: bump alpine versions --- create_builds.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/create_builds.py b/create_builds.py index 476fdcd..e9ce25b 100755 --- a/create_builds.py +++ b/create_builds.py @@ -6,11 +6,11 @@ PLATFORMS = ["linux/amd64", "linux/arm64"] TARGETS = ["pyenv", "tox-base"] -VARIANTS = ["alpine-3.20", "debian-bullseye", "ubuntu-jammy"] -VARIANTS += ["alpine-3.21", "debian-bookworm", "ubuntu-noble"] +VARIANTS = ["alpine-3.21", "debian-bullseye", "ubuntu-jammy"] +VARIANTS += ["alpine-3.22", "debian-bookworm", "ubuntu-noble"] # Which distro version gets the distro name tag DISTRO_DEFAULT_VERSIONS = { - "alpine": "3.21", + "alpine": "3.22", "debian": "bookworm", "ubuntu": "noble", } From 0962a6b88ef128f082d3ad611333ecff789d80f6 Mon Sep 17 00:00:00 2001 From: Eero af Heurlin Date: Thu, 13 Nov 2025 10:46:12 +0200 Subject: [PATCH 2/3] feat: add py314 support --- create_builds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create_builds.py b/create_builds.py index e9ce25b..01dd0fb 100755 --- a/create_builds.py +++ b/create_builds.py @@ -14,7 +14,7 @@ "debian": "bookworm", "ubuntu": "noble", } -BUILD_PYTHON_VERSIONS = "3.11 3.12 3.13" +BUILD_PYTHON_VERSIONS = "3.11 3.12 3.13 3.14" def print_bakefile(reponame: str, target: str) -> None: From 51ad0b4df4deb0a915c688f9d290d53bd8284f07 Mon Sep 17 00:00:00 2001 From: Eero af Heurlin Date: Thu, 13 Nov 2025 10:52:04 +0200 Subject: [PATCH 3/3] docs: new linuxkit/binfmt image --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bab8a20..3ee1039 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ In order to be able to build images for foreign architectures, the `linuxkit/bin image should pulled and run. This will make [`qemu-user-static`](https://github.com/multiarch/qemu-user-static) available on the host: - docker run --rm --privileged linuxkit/binfmt:bebbae0c1100ebf7bf2ad4dfb9dfd719cf0ef132 # latest as of 2022-11-15 + docker run --rm --privileged linuxkit/binfmt:594ef260c28aa6d85273b8f08ba3076d340c54d7 # latest as of 2025-10-28 ### Create/refresh a "builder" instance