Skip to content

Commit 8b6acb5

Browse files
committed
Fix macos wheel build
1 parent 245a8a9 commit 8b6acb5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
strategy:
1818
matrix:
19-
os: [macos-13, macos-14, macos-15]
19+
os: [macos-15-intel, macos-14, macos-15, macos-26]
2020
python: ["3.10", 3.11, 3.12, 3.13, 3.14]
2121
steps:
2222
- name: Checkout
@@ -32,7 +32,7 @@ jobs:
3232
brew install gsl
3333
pip install --upgrade pip build
3434
- name: Build Wheel (arm64)
35-
if: matrix.os == 'macos-14' || matrix.os == 'macos-15'
35+
if: matrix.os != 'macos-15-intel'
3636
run: |
3737
export PLAT="arm64"
3838
export _PYTHON_HOST_PLATFORM="macosx-11.0-arm64"
@@ -44,7 +44,7 @@ jobs:
4444
export LDFLAGS+=" -arch arm64"
4545
python -m build --wheel
4646
- name: Build Wheel (x86_64)
47-
if: matrix.os == 'macos-13'
47+
if: matrix.os == 'macos-15-intel'
4848
run: |
4949
export PLAT="x86_64"
5050
export _PYTHON_HOST_PLATFORM="macosx-11.0-x86_64"
@@ -154,7 +154,7 @@ jobs:
154154
runs-on: ${{ matrix.os }}
155155
strategy:
156156
matrix:
157-
os: [macos-13, macos-14, macos-15]
157+
os: [macos-15-intel, macos-14, macos-15, macos-26]
158158
python: ["3.10", 3.11, 3.12, 3.13, 3.14]
159159
steps:
160160
- name: Download wheels

0 commit comments

Comments
 (0)