From 479ebbe4ca547557ce3693ca1ed9e78372bbe1d4 Mon Sep 17 00:00:00 2001 From: Marta Iborra Date: Thu, 15 Feb 2024 12:32:34 +0100 Subject: [PATCH] Use latest cibuildwheel version --- .github/workflows/cibuildwheels.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cibuildwheels.yml b/.github/workflows/cibuildwheels.yml index 9a78170..db45bcb 100644 --- a/.github/workflows/cibuildwheels.yml +++ b/.github/workflows/cibuildwheels.yml @@ -61,7 +61,7 @@ jobs: - name: Build wheels (Windows) if: runner.os == 'Windows' - uses: pypa/cibuildwheel@v2.14.1 + uses: pypa/cibuildwheel@v2.16.5 env: CIBW_BEFORE_ALL: python -m pip install cibuildwheel -U CIBW_BUILD: 'cp38-win_amd64 cp39-win_amd64 cp310-win_amd64 cp311-win_amd64' @@ -71,7 +71,7 @@ jobs: - name: Build wheels (Linux / Mac OSX x86_64) if: ${{ matrix.os != 'windows-latest' && matrix.arch != 'aarch64' }} - uses: pypa/cibuildwheel@v2.14.1 + uses: pypa/cibuildwheel@v2.16.5 env: # The build requirements should be installed by the pyproject.toml specs #CIBW_BEFORE_BUILD: python -m pip install --upgrade pip && python -m pip install -r requirements-build.txt @@ -85,7 +85,7 @@ jobs: - name: Build wheels (Ubuntu aarch64) if: ${{ matrix.os == 'ubuntu-latest' && matrix.arch == 'aarch64' }} - uses: pypa/cibuildwheel@v2.14.1 + uses: pypa/cibuildwheel@v2.16.5 env: # The build requirements should be installed by the pyproject.toml specs CIBW_BUILD: 'cp39-* cp310-* cp311-* cp312-*' @@ -93,7 +93,7 @@ jobs: - name: Build wheels (Mac OSX arm64) if: ${{ matrix.os != 'windows-latest' && runner.os != 'Linux' }} - uses: pypa/cibuildwheel@v2.14.1 + uses: pypa/cibuildwheel@v2.16.5 env: # The build requirements should be installed by the pyproject.toml specs CIBW_ENVIRONMENT: CMAKE_OSX_ARCHITECTURES=arm64 DONT_BUILD_EXAMPLES=1