Skip to content
Snippets Groups Projects
Unverified Commit 1e73effe authored by David Robertson's avatar David Robertson
Browse files

Fix typo in cibuildwheel conf introduced in #14253

parent 09b58885
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,7 @@ def main(wheel_file: str, dest_dir: str, archs: Optional[str]) -> None:
# `delocate-listdeps`.
subprocess.run(["delocate-listdeps", wheel_file], check=True)
subprocess.run(
["delocate-wheel" "--require-archs", archs, "-w", dest_dir, wheel_file],
["delocate-wheel", "--require-archs", archs, "-w", dest_dir, wheel_file],
check=True,
)
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment