feat: add support for manylinux_2_28 i686 image (#2480)

Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
This commit is contained in:
Matthieu Darbois
2025-07-08 09:32:51 +01:00
committed by GitHub
co-authored by Henry Schreiner
parent dafc3545eb
commit 46ef6044e2
9 changed files with 41 additions and 20 deletions
+2 -2
View File
@@ -69,7 +69,7 @@ def test_simple_settings(tmp_path, platform, fname):
assert options_reader.get("test-groups", option_format=ListFormat(" ")) == "three four"
assert options_reader.get("manylinux-x86_64-image") == "manylinux_2_28"
assert options_reader.get("manylinux-i686-image") == "manylinux2014"
assert options_reader.get("manylinux-i686-image") == "manylinux_2_28"
with pytest.raises(OptionsReaderError):
# fails because the option is a table and the option_format only works with lists
@@ -104,7 +104,7 @@ def test_envvar_override(tmp_path, platform):
assert options_reader.get("build") == "cp38*"
assert options_reader.get("manylinux-x86_64-image") == "manylinux_2_24"
assert options_reader.get("manylinux-i686-image") == "manylinux2014"
assert options_reader.get("manylinux-i686-image") == "manylinux_2_28"
assert (
options_reader.get("xbuild-tools", option_format=ListFormat(" ", quote=shlex.quote))