Skip to content

Commit 0807daf

Browse files
authored
Revert "break: remove manylinux_2_34_i686 image (#1796)" (#1815)
This reverts commit 87542c8.
1 parent 9c1b8e5 commit 0807daf

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
@@ -47,7 +47,7 @@ jobs:
4747
reduced = [
4848
("x86_64", "ubuntu-24.04", ("manylinux2014", "manylinux_2_28", "manylinux_2_34", "musllinux_1_2")),
4949
("aarch64", "ubuntu-24.04-arm", ("manylinux2014", "manylinux_2_28", "manylinux_2_34", "musllinux_1_2")),
50-
("i686", "ubuntu-24.04", ("manylinux2014", "manylinux_2_28", "musllinux_1_2")),
50+
("i686", "ubuntu-24.04", ("manylinux2014", "manylinux_2_28", "manylinux_2_34", "musllinux_1_2")),
5151
("armv7l", "ubuntu-24.04-arm", ("manylinux_2_31", "musllinux_1_2")),
5252
("s390x", "ubuntu-24.04", ("musllinux_1_2",)),
5353
]

README.rst

Lines changed: 2 additions & 1 deletion
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``, ``aarch64``, ``ppc64le`` and ``s390x``.
39+
- ``manylinux_2_34`` images for ``x86_64``, ``i686``, ``aarch64``, ``ppc64le`` and ``s390x``.
4040

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

@@ -107,6 +107,7 @@ 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``
110111
- aarch64 image: ``quay.io/pypa/manylinux_2_34_aarch64``
111112
- ppc64le image: ``quay.io/pypa/manylinux_2_34_ppc64le``
112113
- s390x image: ``quay.io/pypa/manylinux_2_34_s390x``

deploy_multiarch.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ 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");;
3635
musllinux_1_2) ARCHS=("x86_64" "i686" "aarch64" "armv7l" "ppc64le" "s390x");;
3736
*) ARCHS=("x86_64" "i686" "aarch64" "ppc64le" "s390x");;
3837
esac

0 commit comments

Comments
 (0)