Skip to content

Commit

Permalink
chore: update cibuildwheel
Browse files Browse the repository at this point in the history
  • Loading branch information
GabDug authored and mwilliamson committed Aug 14, 2024
1 parent bf07a27 commit 2ec70cd
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,13 @@ jobs:
python-version: '3.11'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.19.2
run: python -m pip install cibuildwheel==2.20.0

- id: set-matrix
env:
CIBW_ARCHS_LINUX: "auto aarch64"
CIBW_ARCHS_MACOS: "auto"
CIBW_SKIP: "cp36-win_amd64 cp36-win32 pp*-win_amd64 pp*-win32"
CIBW_PRERELEASE_PYTHONS: "True" # XXX Can be removed on cibuildwheel 2.20
run: |
MATRIX=$(
{
Expand Down Expand Up @@ -146,7 +145,7 @@ jobs:

- name: Build wheels
if: steps.should-build-wheel.outputs.true
uses: pypa/cibuildwheel@v2.19.2
uses: pypa/cibuildwheel@v2.20.0
with:
only: ${{ matrix.cibw-only }}
env:
Expand All @@ -173,18 +172,18 @@ jobs:

- name: Print build identifiers
run: |
python -m pip install cibuildwheel==2.19.2
python -m pip install cibuildwheel==2.20.0
CIBW_SKIP=cp38-macosx_arm64 python -m cibuildwheel --print-build-identifiers
- name: Build wheels
if: ${{ (github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')) }}
uses: pypa/cibuildwheel@v2.19.2
uses: pypa/cibuildwheel@v2.20.0
env:
CIBW_SKIP: cp38-macosx_arm64

- name: Build wheels
if: ${{ !(github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')) }}
uses: pypa/cibuildwheel@v2.19.2
uses: pypa/cibuildwheel@v2.20.0
with:
only: cp310-macosx_arm64

Expand Down

0 comments on commit 2ec70cd

Please sign in to comment.