From 4e94178169f910c7a665f689d3a625f7d7b43449 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 9 Mar 2024 20:10:40 +0100 Subject: [PATCH] exclude python 3.9 on Macos 14 --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc3886b32..44f489346 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -126,6 +126,9 @@ jobs: matrix: os: [ "macos-latest", "macos-13", "macos-14" ] python-version: ["3.9", "3.10", "3.11", "3.12"] + exclude: + - os: "macos-14" + python-version: "3.9" steps: - uses: actions/checkout@v4