Skip to content

Commit e50da5c

Browse files
committed
updates runner os
1 parent ddc3c31 commit e50da5c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build_wheel.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
platform: [windows-2022, ubuntu-latest, macos-13, macos-14]
14+
platform: [windows-latest, ubuntu-latest, macos-15-intel, macos-latest]
1515
env:
1616
CIBW_SKIP: 'pp*'
1717
CIBW_ARCHS: 'auto64'
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
python-version: "3.x"
3535
- name: Install OMP (MacOS Intel)
36-
if: matrix.platform == 'macos-13'
36+
if: matrix.platform == 'macos-15-intel'
3737
run: |
3838
brew install llvm@20 libomp
3939
echo "export CC=/usr/local/opt/llvm@20/bin/clang" >> ~/.bashrc
@@ -43,7 +43,7 @@ jobs:
4343
echo "export LDFLAGS=\"$LDFLAGS -Wl,-rpath,/usr/local/opt/libomp/lib -L/usr/local/opt/libomp/lib -lomp\"" >> ~/.bashrc
4444
source ~/.bashrc
4545
- name: Install OMP (MacOS M1)
46-
if: matrix.platform == 'macos-14'
46+
if: matrix.platform == 'macos-latest'
4747
run: |
4848
brew install llvm@20 libomp
4949
echo "export CC=/opt/homebrew/opt/llvm@20/bin/clang" >> ~/.bashrc

.github/workflows/run_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
platform: [windows-2022, ubuntu-latest, macos-13, macos-14]
22+
platform: [windows-latest, ubuntu-latest, macos-15-intel, macos-latest]
2323
version: ["3.10", "3.13"]
2424
defaults:
2525
run:
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
python-version: ${{ matrix.version }}
3838
- name: Install OMP (MacOS Intel)
39-
if: matrix.platform == 'macos-13'
39+
if: matrix.platform == 'macos-15-intel'
4040
run: |
4141
brew install llvm@20 libomp
4242
echo "export CC=/usr/local/opt/llvm@20/bin/clang" >> ~/.bashrc
@@ -46,7 +46,7 @@ jobs:
4646
echo "export LDFLAGS=\"$LDFLAGS -Wl,-rpath,/usr/local/opt/libomp/lib -L/usr/local/opt/libomp/lib -lomp\"" >> ~/.bashrc
4747
source ~/.bashrc
4848
- name: Install OMP (MacOS M1)
49-
if: matrix.platform == 'macos-14'
49+
if: matrix.platform == 'macos-latest'
5050
run: |
5151
brew install llvm@20 libomp
5252
echo "export CC=/opt/homebrew/opt/llvm@20/bin/clang" >> ~/.bashrc

0 commit comments

Comments
 (0)