From 24a3b36f1d12e6465cc0b362049f008594d6f62b Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Sun, 28 Apr 2024 11:00:27 -0400 Subject: [PATCH] workflows/tests: patch macos runner version for 3.7 (#334) --- .github/workflows/tests.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 662e7810..126ad403 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,6 +18,15 @@ jobs: matrix: python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] os: ["macos-latest", "windows-latest", "ubuntu-latest"] + # Use the macos-13 runner for 3.7, since 3.7 is not currently available + # on ARM64 macOS runners (i.e. 14+). + # See: https://github.com/actions/setup-python/issues/856 + exclude: + - python-version: "3.7" + os: "macos-latest" + include: + - python-version: "3.7" + os: "macos-13" steps: - uses: "actions/checkout@v4"