Add i686 support for PyPy

This commit is contained in:
mayeut
2021-05-24 10:32:52 +02:00
parent c29a701ebc
commit d84665491a
9 changed files with 18 additions and 3 deletions
+1
View File
@@ -65,6 +65,7 @@ def test(manylinux_image, tmp_path):
"CIBW_MANYLINUX_PPC64LE_IMAGE": manylinux_image,
"CIBW_MANYLINUX_S390X_IMAGE": manylinux_image,
"CIBW_MANYLINUX_PYPY_AARCH64_IMAGE": manylinux_image,
"CIBW_MANYLINUX_PYPY_I686_IMAGE": manylinux_image,
}
if manylinux_image in {"manylinux1"}:
# We don't have a manylinux1 image for PyPy
+1 -1
View File
@@ -140,7 +140,7 @@ def expected_wheels(
if platform == "linux":
architectures = [machine_arch]
if machine_arch == "x86_64" and python_abi_tag.startswith("cp"):
if machine_arch == "x86_64":
architectures.append("i686")
platform_tags = [