From e77956dd49b04953114f34de2ed5a9df927860f3 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Tue, 23 Apr 2024 18:19:48 +0300 Subject: [PATCH] Infra: Fix Python 3.9 on CI (#3763) --- .github/workflows/test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 70a627626..5fef7979a 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