From 8d9c331cf3ca067ecdf98c6e36198b90a0c2d2bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 18:22:59 +0000 Subject: [PATCH] Bump pypa/cibuildwheel from 2.15 to 2.16 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.15 to 2.16. - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v2.15...v2.16) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/wheels.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wheels.yaml b/.github/workflows/wheels.yaml index 051610ffff..2ce6faab86 100644 --- a/.github/workflows/wheels.yaml +++ b/.github/workflows/wheels.yaml @@ -49,11 +49,11 @@ jobs: # We use the cibuildwheel action to take care of everything - name: Build wheels (Mac) if: runner.os == 'macOS' - uses: pypa/cibuildwheel@v2.15 + uses: pypa/cibuildwheel@v2.16 - name: Build wheels (Linux) if: runner.os == 'Linux' - uses: pypa/cibuildwheel@v2.15 + uses: pypa/cibuildwheel@v2.16 env: SKBUILD_CMAKE_ARGS: -DCMAKE_Fortran_COMPILER=${{ steps.sf.outputs.fc }};-DCMAKE_C_COMPILER=${{ steps.sf.outputs.cc }} CC: ${{ steps.setup-fortran.outputs.cc }} @@ -61,7 +61,7 @@ jobs: - name: Build wheels (Windows) if: runner.os == 'Windows' - uses: pypa/cibuildwheel@v2.15 + uses: pypa/cibuildwheel@v2.16 env: # when building with windows the Cython generated sources lacks linking # against -lpythonX.Y, I don't know why, or how to bypass this problem.