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.