Move PyPy 3.10 to pypy-eol (#2521)

* Move PyPy 3.10 to pypy-eol

* Refactor PyPy selection
This commit is contained in:
Hugo van Kemenade
2025-09-08 15:57:14 +01:00
committed by GitHub
parent dac57ccc94
commit 3f076ba487
3 changed files with 7 additions and 6 deletions
+2 -3
View File
@@ -16,7 +16,6 @@ def test_build():
assert build_selector("cp312-manylinux_x86_64")
assert build_selector("cp313-manylinux_x86_64")
assert build_selector("cp314-manylinux_x86_64")
assert build_selector("pp310-manylinux_x86_64")
assert build_selector("pp311-manylinux_x86_64")
assert build_selector("cp36-manylinux_i686")
assert build_selector("cp37-manylinux_i686")
@@ -62,8 +61,8 @@ def test_build_filter_pypy():
skip_config="",
enable=frozenset([EnableGroup.PyPy]),
)
assert build_selector("pp310-manylinux_x86_64")
assert build_selector("pp311-manylinux_x86_64")
assert not build_selector("pp310-manylinux_x86_64")
assert not build_selector("pp38-manylinux_x86_64")
assert not build_selector("pp39-manylinux_x86_64")
@@ -74,8 +73,8 @@ def test_build_filter_pypy_eol():
skip_config="",
enable=frozenset([EnableGroup.PyPyEoL]),
)
assert not build_selector("pp310-manylinux_x86_64")
assert not build_selector("pp311-manylinux_x86_64")
assert build_selector("pp310-manylinux_x86_64")
assert build_selector("pp38-manylinux_x86_64")
assert build_selector("pp39-manylinux_x86_64")