diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 4abd3eb0..d596770f 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -9,7 +9,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ macos-11, macos-12, macos-13, flyci-macos-large-latest-m2, macos-14, ubuntu-latest, windows-latest ] + os: [ macos-12, macos-13, flyci-macos-large-latest-m2, macos-14, ubuntu-latest, windows-latest ] steps: - uses: awvwgk/setup-fortran@main @@ -44,19 +44,10 @@ jobs: - name: Build macos-12 wheels if: matrix.os == 'macos-12' - env: - MACOSX_DEPLOYMENT_TARGET: 12 - CIBW_BUILD: cp311-* - CIBW_SKIP: pp* - CIBW_BUILD_VERBOSITY: 1 - run: python -m cibuildwheel --output-dir wheelhouse - - - name: Build macos-11 wheels - if: matrix.os == 'macos-11' env: # all cp3xx, since old macs seem to only use osx 11+ builds if this is set not "none" # see consistency with get_tag() in setup.py - MACOSX_DEPLOYMENT_TARGET: 11 + MACOSX_DEPLOYMENT_TARGET: 12 CIBW_SKIP: pp* CIBW_BUILD_VERBOSITY: 1 run: python -m cibuildwheel --output-dir wheelhouse diff --git a/setup.py b/setup.py index 752ad950..6411a635 100644 --- a/setup.py +++ b/setup.py @@ -256,7 +256,7 @@ def finalize_options(self): def get_tag(self): _, _, plat = super().get_tag() - if "osx_11" in plat: + if "osx_12" in plat: return _, _, plat return "py3", "none", plat