From 23e32d8fb1bb2335ba06a97f6aec5afdb74c68d1 Mon Sep 17 00:00:00 2001 From: Kevin Deldycke Date: Sun, 11 Feb 2024 17:20:10 +0400 Subject: [PATCH] macos-14 runners are unstable for Python < 3.10 --- .github/workflows/tests.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index f3fd764b6..e5197a6c2 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -72,6 +72,10 @@ jobs: # List of unstable criterions. unstable: list[dict[str, str]] = [ + # XXX Python <3.10 is not available on new macOS M1 runners. + # See: https://github.com/actions/setup-python/issues/808 + {"os": "macos-14", "python-version": "3.8"}, + {"os": "macos-14", "python-version": "3.9"}, # msgpack does not work on Python 3.13-dev yet: # https://github.com/msgpack/msgpack-python/issues/573 {"python-version": "3.13-dev"},