From 440a8c31486a4bab97edf6565ecaceaf868b145b Mon Sep 17 00:00:00 2001 From: Paul Natsuo Kishimoto Date: Thu, 25 Apr 2024 11:02:45 +0200 Subject: [PATCH] Work around actions/setup-python#696 --- .github/workflows/pytest.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 9f292285..6114fd34 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -30,6 +30,14 @@ jobs: # commented: only enable once next Python version enters RC # - "3.13.0-rc.1" # Development version + # Work around https://github.com/actions/setup-python/issues/696 + exclude: + - {os: macos-latest, python-version: "3.8"} + - {os: macos-latest, python-version: "3.9"} + include: + - {os: macos-13, python-version: "3.8"} + - {os: macos-13, python-version: "3.9"} + fail-fast: false runs-on: ${{ matrix.os }}