From 1d3f84fbd19c3fabfb7ed70e3062b18e52601293 Mon Sep 17 00:00:00 2001 From: mhostetter Date: Sun, 9 Jun 2024 19:24:43 -0400 Subject: [PATCH] Fix Python 3.7 and 3.8 for `macos-latest` Need to run "min" tests fo `macos-13` runners --- .github/workflows/test.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8391586a8..618c48c9d 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -86,9 +86,13 @@ jobs: exclude: # Python < v3.8 does not support Apple Silicon ARM64 - python-version: "3.7" os: macos-latest + - python-version: "3.8" + os: macos-latest include: # So run those legacy versions on Intel CPUs - python-version: "3.7" os: macos-13 + - python-version: "3.8" + os: macos-13 runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3