From 5166025ae5da5e093d6cfe2b26cae5e1334476e4 Mon Sep 17 00:00:00 2001 From: Wilfried Chauveau Date: Tue, 30 Apr 2024 23:15:52 +0100 Subject: [PATCH] ci: dropping python 3.7 on macos from CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It is no longer present in python’s GHA --- .github/workflows/basic_test.yaml | 3 +++ .github/workflows/basic_test_skipped.yaml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/basic_test.yaml b/.github/workflows/basic_test.yaml index 5419e9f91..b1f1f0b46 100644 --- a/.github/workflows/basic_test.yaml +++ b/.github/workflows/basic_test.yaml @@ -32,6 +32,9 @@ jobs: - "3.9" - "3.10" - "3.11" + exclude: + - os: macos-latest + python-version: "3.7" steps: # Only check out HEAD. We don't need the full history. diff --git a/.github/workflows/basic_test_skipped.yaml b/.github/workflows/basic_test_skipped.yaml index b5ebc8117..b1d12d703 100644 --- a/.github/workflows/basic_test_skipped.yaml +++ b/.github/workflows/basic_test_skipped.yaml @@ -29,5 +29,8 @@ jobs: - "3.9" - "3.10" - "3.11" + exclude: + - os: macos-latest + python-version: "3.7" steps: - run: 'echo "Skipped due to path filter."'