Skip to content

Commit 3e2bf9a

Browse files
committed
Update Github to use new Mac runners
As of December the macOS 13 runner image is deprecated (https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/) In light of this we are switching to the macOS-15-intel with the intel architecture.
1 parent d1379a7 commit 3e2bf9a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ jobs:
6464
fail-fast: false
6565
matrix:
6666
python-version: ["3.9"]
67-
os: [macos-13, macos-latest, ubuntu-latest]
67+
os: [macos-15-intel, macos-latest, ubuntu-latest]
6868
include-rms: ["", "with RMS"]
6969
exclude:
70-
- os: macos-13 # GitHub's runners just aren't up to the task of installing Julia
70+
- os: macos-15-intel # GitHub's runners just aren't up to the task of installing Julia
7171
include-rms: 'with RMS'
7272
runs-on: ${{ matrix.os }}
7373
name: Python ${{ matrix.python-version }} ${{ matrix.os }} Build and Test ${{ matrix.include-rms }}

.github/workflows/conda_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
os: [ubuntu-latest, macos-13, macos-latest]
18+
os: [ubuntu-latest, macos-15-intel, macos-latest]
1919
numpy-version: ["1.26"]
2020
python-version: ["3.9"]
2121
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)