Skip to content

Commit

Permalink
Fix: MacOS14 CIBW bug (won't move wheel after test) (#50)
Browse files Browse the repository at this point in the history
pathlib.Path.unlink appears to throw a NotADirectoryError on Macos, CIBW only supresses a FileNotFoundError, which is what Pathlib documents (!)
  • Loading branch information
MusicalNinjaDad committed Jun 3, 2024
1 parent 9cac1d6 commit a0c6073
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
archs = "all"

[tool.cibuildwheel.macos]
before-all = "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal && cargo install just && just clean"
before-all = "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal && cargo install just && just clean && mkdir wheelhouse"

[tool.cibuildwheel.windows]
before-all = "rustup target add aarch64-pc-windows-msvc i586-pc-windows-msvc i686-pc-windows-msvc x86_64-pc-windows-msvc && cargo install just && just clean"
Expand Down
Empty file removed wheelhouse/.gitkeep
Empty file.

0 comments on commit a0c6073

Please sign in to comment.