From 2ec70cda9e5033f53188d7b685d64c5dbdf167b2 Mon Sep 17 00:00:00 2001 From: Gabriel Dugny Date: Sun, 4 Aug 2024 13:07:03 +0200 Subject: [PATCH] chore: update cibuildwheel --- .github/workflows/build.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ea2b23e..6d19141 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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=$( { @@ -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: @@ -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