Skip to content

Commit 31a2e1e

Browse files
authored
Merge pull request #28272 from QuLogic/drop-macos-11
BLD: Move macos builders from 11 to 12
2 parents aa8ac60 + 6698b3b commit 31a2e1e

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

.github/workflows/cibuildwheel.yml

+2-12
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ jobs:
105105
CIBW_SKIP: "*-musllinux_aarch64"
106106
CIBW_TEST_COMMAND: >-
107107
python {package}/ci/check_version_number.py
108+
MACOSX_DEPLOYMENT_TARGET: "10.12"
108109
MPL_DISABLE_FH4: "yes"
109110
strategy:
110111
matrix:
@@ -115,16 +116,10 @@ jobs:
115116
cibw_archs: "aarch64"
116117
- os: windows-latest
117118
cibw_archs: "auto64"
118-
- os: macos-11
119+
- os: macos-12
119120
cibw_archs: "x86_64"
120-
# NOTE: macos_target can be moved back into global environment after
121-
# meson-python 0.16.0 is released.
122-
macos_target: "10.12"
123121
- os: macos-14
124122
cibw_archs: "arm64"
125-
# NOTE: macos_target can be moved back into global environment after
126-
# meson-python 0.16.0 is released.
127-
macos_target: "11.0"
128123

129124
steps:
130125
- name: Set up QEMU
@@ -146,7 +141,6 @@ jobs:
146141
env:
147142
CIBW_BUILD: "cp312-*"
148143
CIBW_ARCHS: ${{ matrix.cibw_archs }}
149-
MACOSX_DEPLOYMENT_TARGET: "${{ matrix.macos_target }}"
150144

151145
- name: Build wheels for CPython 3.11
152146
uses: pypa/cibuildwheel@711a3d017d0729f3edde18545fee967f03d65f65 # v2.18.0
@@ -155,7 +149,6 @@ jobs:
155149
env:
156150
CIBW_BUILD: "cp311-*"
157151
CIBW_ARCHS: ${{ matrix.cibw_archs }}
158-
MACOSX_DEPLOYMENT_TARGET: "${{ matrix.macos_target }}"
159152

160153
- name: Build wheels for CPython 3.10
161154
uses: pypa/cibuildwheel@711a3d017d0729f3edde18545fee967f03d65f65 # v2.18.0
@@ -164,7 +157,6 @@ jobs:
164157
env:
165158
CIBW_BUILD: "cp310-*"
166159
CIBW_ARCHS: ${{ matrix.cibw_archs }}
167-
MACOSX_DEPLOYMENT_TARGET: "${{ matrix.macos_target }}"
168160

169161
- name: Build wheels for CPython 3.9
170162
uses: pypa/cibuildwheel@711a3d017d0729f3edde18545fee967f03d65f65 # v2.18.0
@@ -173,7 +165,6 @@ jobs:
173165
env:
174166
CIBW_BUILD: "cp39-*"
175167
CIBW_ARCHS: ${{ matrix.cibw_archs }}
176-
MACOSX_DEPLOYMENT_TARGET: "${{ matrix.macos_target }}"
177168

178169
- name: Build wheels for PyPy
179170
uses: pypa/cibuildwheel@711a3d017d0729f3edde18545fee967f03d65f65 # v2.18.0
@@ -182,7 +173,6 @@ jobs:
182173
env:
183174
CIBW_BUILD: "pp39-*"
184175
CIBW_ARCHS: ${{ matrix.cibw_archs }}
185-
MACOSX_DEPLOYMENT_TARGET: "${{ matrix.macos_target }}"
186176
if: matrix.cibw_archs != 'aarch64'
187177

188178
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)