feat: move default manylinux build to manylinux_2_28 (#2330)

This commit is contained in:
Matthieu Darbois
2025-03-24 17:00:44 +00:00
committed by GitHub
parent 141e702872
commit e6eff86c98
8 changed files with 100 additions and 100 deletions
+4 -1
View File
@@ -43,9 +43,12 @@ def test(tmp_path):
)
# also check that we got the right wheels built
manylinux_versions = ["manylinux_2_5", "manylinux1", "manylinux_2_17", "manylinux2014"]
expected_wheels = [
w
for w in utils.expected_wheels("spam", "0.1.0", musllinux_versions=[])
for w in utils.expected_wheels(
"spam", "0.1.0", manylinux_versions=manylinux_versions, musllinux_versions=[]
)
if "-cp38-" in w or "-cp39-" in w
]
assert set(actual_wheels) == set(expected_wheels)