From 88b304f1b419ea8d8f60fd430dcd0a34073e83a4 Mon Sep 17 00:00:00 2001 From: Nicolas Tessore Date: Mon, 13 May 2024 08:06:02 +0100 Subject: [PATCH] TST: Fix macos-latest and Python 3.7 test error (#51) Exclude the combination of `macos-latest` and `python-version==3.7` from running tests. Fixes: gh-50 --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a3c9809..ade482f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,6 +19,9 @@ jobs: - macos-latest - windows-latest python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + exclude: + - runs-on: macos-latest + python-version: '3.7' runs-on: ${{ matrix.runs-on }} steps: - uses: actions/checkout@v4