diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index a7947a16a..4ffb8e9bd 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -92,7 +92,7 @@ jobs: # build wheels for ubuntu-24.04 - name: Build wheels for ubuntu if: matrix.os == 'ubuntu-24.04' - uses: pypa/cibuildwheel@v2.23.3 + uses: pypa/cibuildwheel@v3.1.1 env: CIBW_ARCHS_LINUX: ${{ matrix.arch }} CIBW_BUILD: ${{ matrix.build }} @@ -104,7 +104,7 @@ jobs: # build wheels for ubuntu-24.04 armv7l - name: Build wheels for ubuntu armv7l if: matrix.os == 'ubuntu-24.04-arm' && (matrix.arch == 'armv7l') - uses: pypa/cibuildwheel@v2.23.3 + uses: pypa/cibuildwheel@v3.1.1 env: CIBW_ARCHS_LINUX: ${{ matrix.arch }} CIBW_BUILD: ${{ matrix.build }} @@ -117,7 +117,7 @@ jobs: # build wheels for ubuntu-24.04 aarch64 - name: Build wheels for ubuntu aarch64 if: matrix.os == 'ubuntu-24.04-arm' && (matrix.arch == 'aarch64') - uses: pypa/cibuildwheel@v2.23.3 + uses: pypa/cibuildwheel@v3.1.1 env: CIBW_ARCHS_LINUX: ${{ matrix.arch }} CIBW_BUILD: ${{ matrix.build }} @@ -129,7 +129,7 @@ jobs: # build wheels for windows-2019 - name: Build wheels for windows if: matrix.os == 'windows-2019' && (matrix.arch == 'AMD64' || matrix.arch == 'x86') - uses: pypa/cibuildwheel@v2.23.3 + uses: pypa/cibuildwheel@v3.1.1 env: CIBW_ARCHS_WINDOWS: ${{ matrix.arch }} CIBW_BUILD: ${{ matrix.build }} @@ -142,7 +142,7 @@ jobs: - name: Build wheels for windows ARM64 if: matrix.os == 'windows-2019' && matrix.arch == 'ARM64' - uses: pypa/cibuildwheel@v2.23.3 + uses: pypa/cibuildwheel@v3.1.1 env: CIBW_ARCHS_WINDOWS: ${{ matrix.arch }} CIBW_BUILD: ${{ matrix.build }} @@ -220,7 +220,7 @@ jobs: - name: Build wheels for macos x86_64 if: matrix.os == 'macos-13' && matrix.arch == 'x86_64' - uses: pypa/cibuildwheel@v2.23.3 + uses: pypa/cibuildwheel@v3.1.1 env: CIBW_ARCHS_MACOS: ${{ matrix.arch }} CIBW_BUILD: ${{ matrix.build }} @@ -238,7 +238,7 @@ jobs: - name: Build wheels for macos arm64 if: matrix.os == 'macos-13' && matrix.arch == 'arm64' - uses: pypa/cibuildwheel@v2.23.3 + uses: pypa/cibuildwheel@v3.1.1 env: CIBW_ARCHS_MACOS: ${{ matrix.arch }} CIBW_BUILD: ${{ matrix.build }}