diff --git a/.github/workflows/node-gyp.yml b/.github/workflows/node-gyp.yml index 2b535b01..3c96a948 100644 --- a/.github/workflows/node-gyp.yml +++ b/.github/workflows/node-gyp.yml @@ -10,8 +10,11 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, ubuntu-latest, windows-latest] + os: [macos-latest, macos-14, ubuntu-latest, windows-latest] python: ["3.8", "3.10", "3.12"] + exclude: + - os: macos-14 + python: "3.8" runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/python_tests.yml b/.github/workflows/python_tests.yml index e4a5fd02..a93412da 100644 --- a/.github/workflows/python_tests.yml +++ b/.github/workflows/python_tests.yml @@ -15,8 +15,13 @@ jobs: fail-fast: false max-parallel: 5 matrix: - os: [macos-latest, ubuntu-latest] # , windows-latest] + os: [macos-latest, macos-14, ubuntu-latest] # , windows-latest] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + exclude: + - os: macos-14 + python-version: "3.8" + - os: macos-14 + python-version: "3.9" steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }}