From 8b3d6a28df49c33ae21357c74a402dab8612328d Mon Sep 17 00:00:00 2001 From: Lukas Berbuer Date: Fri, 12 Jul 2024 13:36:48 +0200 Subject: [PATCH] ci: skip unsupported macOS / Python combination --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5de4e9a..9439573 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,8 @@ jobs: matrix: os: [ubuntu-latest, macos-latest, windows-latest] python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + exclude: + - { os: macos-latest, python: "3.7" } # not available for newer arm64 macos steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5