Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 4 additions & 4 deletions create_builds.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@

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",
}
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:
Expand Down