feature: add PyPy 3.11 (#2268)

This commit is contained in:
Matthieu Darbois
2025-02-25 14:22:19 -05:00
committed by Henry Schreiner
parent bb1fd3320e
commit 017abbba68
5 changed files with 16 additions and 5 deletions
+3 -2
View File
@@ -27,6 +27,7 @@ ALL_IDS = {
"pp38",
"pp39",
"pp310",
"pp311",
}
@@ -158,7 +159,7 @@ before-all = "true"
assert identifiers == {
f"{x}-manylinux_x86_64"
for x in ALL_IDS
- {"cp36", "cp310", "cp311", "cp312", "cp313", "pp37", "pp38", "pp39", "pp310"}
- {"cp36", "cp310", "cp311", "cp312", "cp313", "pp37", "pp38", "pp39", "pp310", "pp311"}
}
assert kwargs["options"].build_options("cp37-manylinux_x86_64").before_all == ""
@@ -169,7 +170,7 @@ before-all = "true"
identifiers = {x.identifier for x in kwargs["platform_configs"]}
assert identifiers == {
f"{x}-manylinux_x86_64"
for x in ["cp310", "cp311", "cp312", "cp313", "pp37", "pp38", "pp39", "pp310"]
for x in ["cp310", "cp311", "cp312", "cp313", "pp37", "pp38", "pp39", "pp310", "pp311"]
}
kwargs = build_in_container.call_args_list[3][1]