diff --git a/.github/workflows/test-and-lint.yml b/.github/workflows/test-and-lint.yml index 5c24c97..19a3327 100644 --- a/.github/workflows/test-and-lint.yml +++ b/.github/workflows/test-and-lint.yml @@ -17,6 +17,13 @@ jobs: matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + exclude: + # Python <3.10 is currently unavailable on `macos-latest` runners with aarch64 + # https://github.com/actions/setup-python/issues/696#issuecomment-1637587760 + - os: macos-latest + python-version: '3.8' + - os: macos-latest + python-version: '3.9' steps: - uses: actions/checkout@v4