From 2e5bb3f820bf5a717ed23393dc9a716d43743f4c Mon Sep 17 00:00:00 2001 From: Mirko Galimberti Date: Sat, 25 May 2024 11:46:35 +0200 Subject: [PATCH] Sunset `apple-silicon-m1` self-hosted runner, as now is supported by Github Hosted runners via `macos-latest` tag. Use `macos-13` for runs on Intel macs --- .github/workflows/python-package.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index ef013f5..7d2ad28 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -9,9 +9,9 @@ jobs: runs-on: ${{ matrix.runs_on }} strategy: matrix: - runs_on: - - macos-latest - - apple-silicon-m1 + # macos-latest (ATM macos-14) runs on Apple Silicon, + # macos-13 runs on Intel + runs_on: ['macos-latest', 'macos-13'] python: - "3.8" - "3.9" @@ -21,11 +21,6 @@ jobs: cython: - "<3" - ">=3" - exclude: - - runs_on: apple-silicon-m1 - python: "3.8" - - runs_on: apple-silicon-m1 - python: "3.9" steps: - uses: actions/checkout@v2