From d536b3f0d2aeebc8cc3b57d4ce5e79c5194c8f04 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 30 Jan 2024 18:49:59 -0800 Subject: [PATCH] Skip Python 3.8 and 3.9 on macos-14 --- .github/workflows/test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dd97f97..9224d82 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,6 +13,12 @@ jobs: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] numpy: [0, 1] os: [ubuntu-latest, macos-latest, windows-latest, macos-14] + # Skip 3.8 and 3.9 on macos-14 - it only has 3.10+ + exclude: + - python-version: "3.8" + os: macos-14 + - python-version: "3.9" + os: macos-14 steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }}