Skip to content

Commit

Permalink
use cibw fix from fork (#52)
Browse files Browse the repository at this point in the history
<!-- Generated by sourcery-ai[bot]: start summary -->

## Summary by Sourcery

This pull request updates the GitHub Actions workflow to use a forked version of cibuildwheel for building Python wheels, addressing an issue in the original cibuildwheel repository.

* **CI**:
    - Updated the GitHub Actions workflow to use a forked version of cibuildwheel for building wheels.

<!-- Generated by sourcery-ai[bot]: end summary -->
  • Loading branch information
MusicalNinjaDad authored Jun 7, 2024
1 parent a0c6073 commit 9ad7d82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
with:
platforms: all
- name: Build wheels
uses: pypa/cibuildwheel@v2.18.1
uses: musicalninjadad/cibuildwheel@MusicalNinjaDad/issue1850
env:
CIBW_BUILD: ${{ matrix.target }}
# with:
Expand Down
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 && mkdir wheelhouse"
before-all = "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal && cargo install just && just clean"

[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

0 comments on commit 9ad7d82

Please sign in to comment.