Skip to content

Commit

Permalink
Exclude unsupported version on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
kennysong committed Feb 14, 2024
1 parent 77bebf9 commit e45b95a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/pip_install_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest, macos-14]

# GitHub Actions doesn't support Python 3.8 and 3.9 on M1 macOS yet:
# https://github.com/actions/setup-python/issues/696
exclude:
- os: macos-latest
python-version: "3.8"
- os: macos-latest
version: "3.9"

# The type of runner that the job will run on
runs-on: ${{ matrix.os }}

Expand Down

0 comments on commit e45b95a

Please sign in to comment.