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 authored and glatterf42 committed Nov 20, 2024
1 parent 12864c8 commit 38ef7c1
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .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 Expand Up @@ -111,7 +122,7 @@ jobs:
strategy:
matrix:
os:
- macos-13
- macos-latest
- ubuntu-latest
- windows-latest

Expand Down

0 comments on commit 38ef7c1

Please sign in to comment.