From 08fe0571c1a902d069c1600bc942b1f88dec2b43 Mon Sep 17 00:00:00 2001 From: skjerns Date: Sat, 27 Jul 2024 14:08:21 +0200 Subject: [PATCH] add mac-os fix --- .github/workflows/tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d6047de8..63478147 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,13 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-2019, windows-latest, macos-latest] - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + exclude: # Python < v3.8 does not support Apple Silicon ARM64. + - python-version: "3.7" + os: macos-latest + include: # So run those legacy versions on Intel CPUs. + - python-version: "3.7" + os: macos-13 steps: - uses: actions/checkout@v3 - name: Setup Python