Skip to content

Commit

Permalink
Update CI setup
Browse files Browse the repository at this point in the history
macos-latest runs on arm64, and Python 3.6 / Python 3.7 are not
available for that architecture.
  • Loading branch information
anishathalye committed May 11, 2024
1 parent ba1c0f0 commit 7202065
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,18 @@ jobs:
python: "3.11"
- os: "windows-latest"
python: "3.12"
exclude:
- os: "macos-latest"
python: "3.6"
- os: "macos-latest"
python: "3.7"
runs-on: ${{ matrix.os }}
name: "Test: Python ${{ matrix.python }} on ${{ matrix.os }}"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
Expand Down

0 comments on commit 7202065

Please sign in to comment.