diff --git a/.github/workflows/wheels.yaml b/.github/workflows/wheels.yaml index 392f24ef1..3fd4223bf 100644 --- a/.github/workflows/wheels.yaml +++ b/.github/workflows/wheels.yaml @@ -35,7 +35,7 @@ jobs: needs: sdist env: - CIBW_BUILD_VERBOSITY: 3 + CIBW_BUILD_VERBOSITY: 1 CIBW_BEFORE_BUILD: >- rm -rf {package}/build # Instead of running pytest directly, we use a bash script that will set up @@ -52,7 +52,7 @@ jobs: # Perhaps in some later release CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 # Deployment of the SDK in MacOS - MACOSX_DEPLOYMENT_TARGET: "10.12" + MACOSX_DEPLOYMENT_TARGET: "${{ matrix.deployment_target }}" strategy: # Ensure that a wheel builder finishes even if another fails @@ -83,11 +83,11 @@ jobs: - uses: actions/checkout@v4 - #- name: Ensure fortran - # uses: fortran-lang/setup-fortran@v1 - # with: - # compiler: gcc - # version: 11 + - name: Ensure fortran + uses: fortran-lang/setup-fortran@v1 + with: + compiler: gcc + version: 11 - name: Build wheels for CPython 3.12 uses: pypa/cibuildwheel@v2.21.3