Remove i386 from 3.14 (for now)#985
Merged
yosifkit merged 1 commit intodocker-library:masterfrom Oct 21, 2024
Merged
Conversation
There's a compilation error in 3.14.0a1 on 32bit x86 Linux that was caught before the release but 32bit x86 Linux is not a "tiered platform" (per PEP 11 / https://peps.python.org/pep-0011), so the fix didn't get in until post-release and should be in the next version (whatever that ends up being; 3.14.0a2, etc).
Member
Author
Diff:$ diff -u <(bashbrew cat python) <(bashbrew cat <(./generate-stackbrew-library.sh))
--- /dev/fd/63 2024-10-21 10:47:57.262859618 -0700
+++ /dev/fd/62 2024-10-21 10:47:57.266859650 -0700
@@ -4,32 +4,32 @@
Tags: 3.14.0a1-bookworm, 3.14-rc-bookworm
SharedTags: 3.14.0a1, 3.14-rc
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 37a6827e0b7a9ef099cfdec5de305e3d4cea7331
Directory: 3.14-rc/bookworm
Tags: 3.14.0a1-slim-bookworm, 3.14-rc-slim-bookworm, 3.14.0a1-slim, 3.14-rc-slim
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 37a6827e0b7a9ef099cfdec5de305e3d4cea7331
Directory: 3.14-rc/slim-bookworm
Tags: 3.14.0a1-bullseye, 3.14-rc-bullseye
-Architectures: amd64, arm32v7, arm64v8, i386
+Architectures: amd64, arm32v7, arm64v8
GitCommit: 37a6827e0b7a9ef099cfdec5de305e3d4cea7331
Directory: 3.14-rc/bullseye
Tags: 3.14.0a1-slim-bullseye, 3.14-rc-slim-bullseye
-Architectures: amd64, arm32v7, arm64v8, i386
+Architectures: amd64, arm32v7, arm64v8
GitCommit: 37a6827e0b7a9ef099cfdec5de305e3d4cea7331
Directory: 3.14-rc/slim-bullseye
Tags: 3.14.0a1-alpine3.20, 3.14-rc-alpine3.20, 3.14.0a1-alpine, 3.14-rc-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 37a6827e0b7a9ef099cfdec5de305e3d4cea7331
Directory: 3.14-rc/alpine3.20
Tags: 3.14.0a1-alpine3.19, 3.14-rc-alpine3.19
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 37a6827e0b7a9ef099cfdec5de305e3d4cea7331
Directory: 3.14-rc/alpine3.19
|
yosifkit
approved these changes
Oct 21, 2024
docker-library-bot
added a commit
to docker-library-bot/official-images
that referenced
this pull request
Oct 21, 2024
Changes: - docker-library/python@2589112: Merge pull request docker-library/python#985 from infosiftr/3.14-i386 - docker-library/python@8f43880: Remove i386 from 3.14 (for now)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
There's a compilation error in 3.14.0a1 on 32bit x86 Linux that was caught before the release but 32bit x86 Linux is not a "tiered platform" (per PEP 11 / https://peps.python.org/pep-0011), so the fix didn't get in until post-release and should be in the next version (whatever that ends up being; 3.14.0a2, etc).
See python/cpython#125535 and python/cpython#125244