Skip to content

Commit 93e20dc

Browse files
committed
auditwheel repair for OL8
1 parent 7b7eaa3 commit 93e20dc

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

scripts/wheelbuilder/build_wheels.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,15 @@ def repair_wheels():
193193
elif sys.platform == "linux":
194194
ensure_installed("auditwheel")
195195
p = subprocess.run(
196-
[join(dirname(sys.executable), "auditwheel"), "repair", "-w", "wheelhouse", whl]
196+
[
197+
join(dirname(sys.executable), "auditwheel"),
198+
"repair",
199+
"--plat",
200+
"manylinux_2_28_x86_64",
201+
"-w",
202+
"wheelhouse",
203+
whl
204+
]
197205
)
198206
elif sys.platform == "darwin":
199207
ensure_installed("delocate")

0 commit comments

Comments
 (0)