We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f1c2d6c + 9f4303b commit c022fa3Copy full SHA for c022fa3
cibuildwheel/macos.py
@@ -535,6 +535,11 @@ def build(options: Options, tmp_path: Path) -> None:
535
536
# we're all done here; move it to output (overwrite existing)
537
if abi3_wheel is None:
538
+ try:
539
+ (build_options.output_dir / repaired_wheel.name).unlink()
540
+ except FileNotFoundError:
541
+ pass
542
+
543
shutil.move(str(repaired_wheel), build_options.output_dir)
544
built_wheels.append(build_options.output_dir / repaired_wheel.name)
545
0 commit comments