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."'