Skip to content

Commit

Permalink
Force GitHub runners to use x86-based machines for MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
njroussel committed Jun 4, 2024
1 parent 6209c1e commit 680832c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
build_wheels:
strategy:
matrix:
os: [ubuntu-20.04, windows-latest, macos-latest]
os: [ubuntu-20.04, windows-latest, macos-13]
python: [cp38, cp39, cp310, cp311, cp312]
cibw-arch: [x86_64, arm64]
exclude:
Expand All @@ -35,7 +35,7 @@ jobs:

name: >
${{ matrix.python }} wheel for ${{ matrix.os }}
${{ (matrix.os == 'macos-latest' && format('({0})', matrix.cibw-arch)) || '' }}
${{ (matrix.os == 'macos-13' && format('({0})', matrix.cibw-arch)) || '' }}
runs-on: ${{ matrix.os }}

steps:
Expand Down

0 comments on commit 680832c

Please sign in to comment.