Skip to content

Commit

Permalink
update os/python versions for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
danibene committed May 18, 2024
1 parent 58c0213 commit f3b8b36
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,16 @@ jobs:
test:
needs: prepare
strategy:
fail-fast: false
matrix:
python:
- "3.7" # oldest Python supported by PSF
- "3.11" # newest Python that is stable
platform:
- ubuntu-latest
- macos-latest
- windows-latest
python: ["3.7", "3.12"]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude: # Python < v3.8 does not support Apple Silicon ARM64.
- python: "3.7"
os: macos-latest
include: # So run those legacy versions on Intel CPUs.
- python: "3.7"
os: macos-13
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit f3b8b36

Please sign in to comment.