From d7d059d8a6424633c9e3b92804d04f7814e833bc Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Fri, 17 May 2024 08:35:24 -0400 Subject: [PATCH] ci: macos-latest is changing to macos-14 ARM runners (#989) Committed via https://github.com/asottile/all-repos GitHub is doing a staged rollout of `macos-latest` pointing at `macos-14`, which is an ARM based runner and only supports Python 3.10+. This locks in the Intel runner (until GitHub eventually removes them). Edit: GitHub has just shipped macos ARM Python 3.8 & 3.9, so when the staged rollout hits this repo, it might still working. I'll try explicitly using the new runners to test. --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7ead82e4..7a8f1a72 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,7 +23,7 @@ jobs: - os: windows-latest python-version: "3.11" installs: "numpy>=2.0.0rc1" - - os: macos-latest + - os: macos-14 python-version: "3.8" installs: "'numpy==1.21.0'" - os: ubuntu-latest