Merge pull request #671 from YannickJadoul/pypy-7.3.5

Update PyPy to 7.3.5 and use PyPA's manylinux images with PyPy
This commit is contained in:
Matthieu Darbois
2021-05-25 18:04:18 +02:00
committed by GitHub
12 changed files with 74 additions and 37 deletions
+10 -1
View File
@@ -285,7 +285,16 @@ def main() -> None:
manylinux_images = {}
for build_platform in ["x86_64", "i686", "pypy_x86_64", "aarch64", "ppc64le", "s390x"]:
for build_platform in [
"x86_64",
"i686",
"pypy_x86_64",
"aarch64",
"ppc64le",
"s390x",
"pypy_aarch64",
"pypy_i686",
]:
pinned_images = all_pinned_docker_images[build_platform]
config_name = f"CIBW_MANYLINUX_{build_platform.upper()}_IMAGE"