Update the option defaults and fix up unit tests

This commit is contained in:
Joe Rickerby
2021-11-21 14:37:13 +01:00
committed by mayeut
parent 04cdc49fcf
commit 2c9ccac843
7 changed files with 36 additions and 29 deletions
+8 -1
View File
@@ -120,7 +120,14 @@ def expected_wheels(
if manylinux_versions is None:
if machine_arch == "x86_64":
manylinux_versions = ["manylinux_2_5", "manylinux1", "manylinux_2_12", "manylinux2010"]
manylinux_versions = [
"manylinux_2_5",
"manylinux1",
"manylinux_2_12",
"manylinux2010",
"manylinux_2_17",
"manylinux2014",
]
else:
manylinux_versions = ["manylinux_2_17", "manylinux2014"]