Add manylinux2014 & manylinux_2_24 support for PyPy

This commit is contained in:
mayeut
2021-05-23 23:46:47 +02:00
parent 9abf1990fc
commit 7126c1063f
5 changed files with 14 additions and 10 deletions
+2 -1
View File
@@ -84,7 +84,8 @@ def test_empty_selector(platform, intercepted_build_args, monkeypatch):
("pypy_x86_64", None, "quay.io/pypa/manylinux2010_x86_64:*"),
("pypy_x86_64", "manylinux1", "manylinux1"), # Does not exist
("pypy_x86_64", "manylinux2010", "quay.io/pypa/manylinux2010_x86_64:*"),
("pypy_x86_64", "manylinux2014", "manylinux2014"), # Does not exist (yet)
("pypy_x86_64", "manylinux2014", "quay.io/pypa/manylinux2014_x86_64:*"),
("pypy_x86_64", "manylinux_2_24", "quay.io/pypa/manylinux_2_24_x86_64:*"),
("pypy_x86_64", "custom_image", "custom_image"),
],
)