From a260fe2489d5306afa6a368d83f1569095cf7753 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Tue, 23 Apr 2024 14:39:51 +0300 Subject: [PATCH] Python 3.9 is on macos-13 but not macos-latest (macos-14-arm64) --- .github/workflows/test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 70a62762686..5fef7979a11 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,6 +39,13 @@ jobs: - "windows-latest" - "macos-latest" - "ubuntu-latest" + # Python 3.9 is on macos-13 but not macos-latest (macos-14-arm64) + # https://github.com/actions/setup-python/issues/696#issuecomment-1637587760 + exclude: + - { python-version: "3.9", os: "macos-latest" } + include: + - { python-version: "3.9", os: "macos-13" } + steps: - uses: actions/checkout@v4