From f254c6b9673e5ecef02ca382277897a6b8fe4795 Mon Sep 17 00:00:00 2001 From: Frederick Jansen Date: Wed, 8 May 2024 14:04:47 -0400 Subject: [PATCH] Exclude unsupported Python versions from macos-14 --- .github/workflows/lint-test-cover-docs.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint-test-cover-docs.yml b/.github/workflows/lint-test-cover-docs.yml index bdd176c6..8a4889ce 100644 --- a/.github/workflows/lint-test-cover-docs.yml +++ b/.github/workflows/lint-test-cover-docs.yml @@ -6,9 +6,16 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] - xcl: ['omit', 'install'] + os: [ ubuntu-latest, macos-13, macos-14, windows-latest ] + python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ] + exclude: + - python-version: '3.8' + os: macos-14 + - python-version: '3.9' + os: macos-14 + - python-version: '3.10' + os: macos-14 + xcl: [ 'omit', 'install' ] name: "Python ${{ matrix.python-version }}" steps: - uses: actions/checkout@v4