@@ -182,87 +182,87 @@ jobs:
182
182
183
183
184
184
# MacOS x86_64
185
- - os : macos-13
185
+ - os : macos-latest
186
186
pythonVersion : 37
187
187
bitness : 64
188
188
platformID : macosx_x86_64
189
189
pythonType : " cp"
190
190
191
- - os : macos-13
191
+ - os : macos-latest
192
192
pythonVersion : 38
193
193
bitness : 64
194
194
platformID : macosx_x86_64
195
195
pythonType : " cp"
196
196
197
- - os : macos-13
197
+ - os : macos-latest
198
198
pythonVersion : 39
199
199
bitness : 64
200
200
platformID : macosx_x86_64
201
201
pythonType : " cp"
202
202
203
- - os : macos-13
203
+ - os : macos-latest
204
204
pythonVersion : 310
205
205
bitness : 64
206
206
platformID : macosx_x86_64
207
207
pythonType : " cp"
208
208
209
- - os : macos-13
209
+ - os : macos-latest
210
210
pythonVersion : 311
211
211
bitness : 64
212
212
platformID : macosx_x86_64
213
213
pythonType : " cp"
214
214
215
- - os : macos-13
215
+ - os : macos-latest
216
216
pythonVersion : 312
217
217
bitness : 64
218
218
platformID : macosx_x86_64
219
219
pythonType : " cp"
220
220
221
221
# Apple-Silicon MacOS
222
- - os : macos-13
222
+ - os : macos-latest
223
223
pythonVersion : 38
224
224
bitness : 64
225
225
platformID : macosx_arm64
226
226
pythonType : " cp"
227
227
228
- - os : macos-13
228
+ - os : macos-latest
229
229
pythonVersion : 39
230
230
bitness : 64
231
231
platformID : macosx_arm64
232
232
pythonType : " cp"
233
233
234
- - os : macos-13
234
+ - os : macos-latest
235
235
pythonVersion : 310
236
236
bitness : 64
237
237
platformID : macosx_arm64
238
238
pythonType : " cp"
239
239
240
- - os : macos-13
240
+ - os : macos-latest
241
241
pythonVersion : 311
242
242
bitness : 64
243
243
platformID : macosx_arm64
244
244
pythonType : " cp"
245
245
246
- - os : macos-13
246
+ - os : macos-latest
247
247
pythonVersion : 312
248
248
bitness : 64
249
249
platformID : macosx_arm64
250
250
pythonType : " cp"
251
251
252
252
# Apple-Silicon MacOS PyPy
253
- # - os: macos-13
253
+ # - os: macos-latest
254
254
# pythonVersion: 38
255
255
# bitness: 64
256
256
# platformID: macosx_arm64
257
257
# pythonType: "pp"
258
258
259
- # - os: macos-13
259
+ # - os: macos-latest
260
260
# pythonVersion: 39
261
261
# bitness: 64
262
262
# platformID: macosx_arm64
263
263
# pythonType: "pp"
264
264
265
- # - os: macos-13
265
+ # - os: macos-latest
266
266
# pythonVersion: 310
267
267
# bitness: 64
268
268
# platformID: macosx_arm64
@@ -283,26 +283,25 @@ jobs:
283
283
run : pip install -r requirements.txt
284
284
285
285
- name : Install XCode
286
- if : matrix.os == 'macos-13 '
286
+ if : matrix.os == 'macos-latest '
287
287
uses :
maxim-lobanov/[email protected]
288
288
with :
289
289
xcode-version : latest
290
290
291
291
# This doesn't work for some reason
292
292
# - name: Install Clang
293
- # if: matrix.os == 'macos-13 '
293
+ # if: matrix.os == 'macos-latest '
294
294
# uses: KyleMayes/install-llvm-action@v1
295
295
# with:
296
296
# version: "15.0"
297
297
# directory: "./llvm"
298
298
# env: on
299
299
300
- # This also doesn't work :(
301
- # - name: Install Clang
302
- # if: matrix.os == 'macos-13'
303
- # run: |
304
- # rm -f '/usr/local/bin/2to3*'
305
- # brew install llvm libomp
300
+ - name : Install Clang
301
+ if : matrix.os == 'macos-latest'
302
+ run : |
303
+ rm -f '/usr/local/bin/2to3*'
304
+ brew install llvm libomp
306
305
307
306
- name : Build Wheels
308
307
if : runner.os == 'macOS'
@@ -319,8 +318,10 @@ jobs:
319
318
GITHUB_ACTIONS : ON
320
319
LIBRAPID_GET_BLAS : OFF
321
320
LIBRAPID_GET_FFTW : OFF
322
- CC : $(brew --prefix llvm)/bin/clang
323
- CXX : $(brew --prefix llvm)/bin/clang++
321
+ CC : /usr/local/opt/llvm/bin/clang
322
+ CXX : /usr/local/opt/llvm/bin/clang++
323
+ # CC: $(brew --prefix llvm)/bin/clang
324
+ # CXX: $(brew --prefix llvm)/bin/clang++
324
325
325
326
run : |
326
327
python -m pip install cibuildwheel
0 commit comments