diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f4177f5e..fdb71c91 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,8 +7,12 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-latest, macos-13, windows-latest] python-version: ['3.7', '3.8', '3.9', '3.10'] + exclude: + # Exclude the combination of macOS-latest and Python 3.7 as arm64 doesn't support Python 3.7 + - os: macos-latest + python-version: '3.7' steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }}