Skip to content

Commit

Permalink
Update Python versions in "pytest" workflow
Browse files Browse the repository at this point in the history
- Add Python 3.13
- Drop Python 3.8
  • Loading branch information
khaeru committed Sep 25, 2024
1 parent 18d3ec2 commit e9a1757
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ jobs:
# release. Only test SparseDataArray where possible.
# Earliest version supported by genno = earliest Python that has not
# reached EOL
- {version: "3.8", extras: ",sparse"}
- {version: "3.9", extras: ",sparse"}
- {version: "3.10", extras: ",sparse"}
- {version: "3.11", extras: ",sparse"}
# Latest release / latest supported by genno / testable on GHA
- {version: "3.12", extras: ",sparse"}
# Latest release / latest supported by genno / testable on GHA
- {version: "3.13-rc.2", extras: ",sparse"}

# For fresh releases and development versions of Python, compiled binary
# wheels are not available for some dependencies, e.g. numpy, pandas.
# Compiling these on the job runner requires a more elaborate build
# environment, currently out of scope for genno. Exclude these versions
# from CI.
# - {version: "3.13.0-rc.1", extras: ""} # Development version
# - {version: "3.14.0-beta.1", extras: ""} # Development version

fail-fast: false

Expand Down

0 comments on commit e9a1757

Please sign in to comment.