Skip to content

Commit

Permalink
Add macos-latest to "pytest" CI matrix
Browse files Browse the repository at this point in the history
- Use macos-13 for Python 3.9.
- Use macos-latest for Python 3.10–3.13.
- Parallel iiasa/ixmp#532
  • Loading branch information
khaeru committed Nov 20, 2024
1 parent 16ea749 commit 38da489
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
matrix:
os:
- macos-13
- macos-latest
- ubuntu-latest
- windows-latest
python-version:
Expand All @@ -40,6 +41,16 @@ jobs:

# - "3.14.0-alpha.1" # Development version

exclude:
# Specific version combinations that are invalid / not to be used
# No arm64 distributions of JPype for these Pythons
- { os: macos-latest, python-version: "3.9" }
# Redundant with macos-latest
- { os: macos-13, python-version: "3.10" }
- { os: macos-13, python-version: "3.11" }
- { os: macos-13, python-version: "3.12" }
- { os: macos-13, python-version: "3.13" }

fail-fast: false

runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 38da489

Please sign in to comment.