From 68f939f878ce12984dcd9ae1db895574e321cbbc Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 3 Jun 2024 16:37:42 -0400 Subject: [PATCH] ci: macos-latest is changing to macos-14 ARM runners (#77) Committed via https://github.com/asottile/all-repos --- .github/workflows/test.yml | 4 ++-- .github/workflows/wheels.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cf5af88..44384dd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: # version number must be string, otherwise 3.10 becomes 3.1 - os: windows-latest python-version: "3.11" - - os: macos-latest + - os: macos-13 python-version: "3.8" - os: ubuntu-latest python-version: "pypy-3.8" @@ -44,5 +44,5 @@ jobs: env: DEBUG: 1 - uses: ts-graphviz/setup-graphviz@v1 - if: ${{ matrix.os != 'macos-latest' }} + if: ${{ matrix.os != 'macos-13' }} - run: python -m pytest diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 9c35682..56fb35e 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -22,7 +22,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-latest, macos-13] arch: [auto, aarch64, universal2] py: [cp38, cp39, cp310, cp311, cp312] exclude: @@ -30,7 +30,7 @@ jobs: arch: aarch64 - os: windows-latest arch: universal2 - - os: macos-latest + - os: macos-13 arch: aarch64 - os: ubuntu-latest arch: universal2