Skip to content

Commit 17a3461

Browse files
committed
Select manylinux tag appropriate for processor architecture
1 parent 9bda3f1 commit 17a3461

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: scripts/wheelbuilder/build_wheels.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def repair_wheels():
198198
join(dirname(sys.executable), "auditwheel"),
199199
"repair",
200200
"--plat",
201-
"manylinux_2_28_x86_64",
201+
"manylinux_2_28_x86_64" if platform.processor() == "x86_64" else "manylinux_2_28_aarch64",
202202
"-w",
203203
"wheelhouse",
204204
whl

0 commit comments

Comments
 (0)