Skip to content

Commit 87542c8

Browse files
authored
break: remove manylinux_2_34_i686 image (#1796)
1 parent 8b58680 commit 87542c8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
reduced = [
5454
("x86_64", "ubuntu-24.04", ("manylinux2014", "manylinux_2_28", "manylinux_2_34", "musllinux_1_2")),
5555
("aarch64", "ubuntu-24.04-arm", ("manylinux2014", "manylinux_2_28", "manylinux_2_34", "musllinux_1_2")),
56-
("i686", "ubuntu-24.04", ("manylinux2014", "manylinux_2_28", "manylinux_2_34", "musllinux_1_2")),
56+
("i686", "ubuntu-24.04", ("manylinux2014", "manylinux_2_28", "musllinux_1_2")),
5757
("armv7l", "ubuntu-24.04-arm", ("manylinux_2_31", "musllinux_1_2")),
5858
("s390x", "ubuntu-24.04", ("musllinux_1_2",)),
5959
]

README.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The manylinux project supports:
3636

3737
- ``manylinux_2_28`` images for ``x86_64``, ``i686``, ``aarch64``, ``ppc64le`` and ``s390x``.
3838

39-
- ``manylinux_2_34`` images for ``x86_64``, ``i686``, ``aarch64``, ``ppc64le`` and ``s390x``.
39+
- ``manylinux_2_34`` images for ``x86_64``, ``aarch64``, ``ppc64le`` and ``s390x``.
4040

4141
- ``musllinux_1_2`` images for ``x86_64``, ``i686``, ``aarch64``, ``ppc64le``, ``s390x`` and ``armv7l``.
4242

@@ -107,7 +107,6 @@ See https://github.com/pypa/manylinux/issues/1725
107107
Toolchain: GCC 14
108108

109109
- x86_64 image: ``quay.io/pypa/manylinux_2_34_x86_64``
110-
- i686 image: ``quay.io/pypa/manylinux_2_34_i686``
111110
- aarch64 image: ``quay.io/pypa/manylinux_2_34_aarch64``
112111
- ppc64le image: ``quay.io/pypa/manylinux_2_34_ppc64le``
113112
- s390x image: ``quay.io/pypa/manylinux_2_34_s390x``

deploy_multiarch.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ for IMAGE in "${IMAGES[@]}"; do
3232

3333
case ${IMAGE} in
3434
manylinux_2_31) ARCHS=("armv7l");;
35+
manylinux_2_34) ARCHS=("x86_64" "aarch64" "ppc64le" "s390x");;
3536
musllinux_1_2) ARCHS=("x86_64" "i686" "aarch64" "armv7l" "ppc64le" "s390x");;
3637
*) ARCHS=("x86_64" "i686" "aarch64" "ppc64le" "s390x");;
3738
esac

0 commit comments

Comments
 (0)