From d6f084d991b4d107c4863868a8fdddb5d2fc82fa Mon Sep 17 00:00:00 2001 From: Nick Smith Date: Tue, 18 Jun 2024 15:26:55 -0400 Subject: [PATCH] Use MacOS 13 runner for python matrix, latest for 3.12 As the MacOS 14+ runners use the M1 chip and those don't support python versions older than 3.10 --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 950f832..bb5b785 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,12 +31,14 @@ jobs: fail-fast: false matrix: python-version: ["3.7", "3.11", "3.12"] - runs-on: [ubuntu-latest, macos-latest, windows-latest] + runs-on: [ubuntu-latest, macos-13, windows-latest] include: - - python-version: pypy-3.7 + - python-version: pypy-3.8 runs-on: ubuntu-latest + - python-version: "3.12" + runs-on: macos-latest steps: - uses: actions/checkout@v4 with: