Skip to content

Commit

Permalink
Re-exclude Python 3.10 from CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
khaeru committed Nov 23, 2021
1 parent 72a67c4 commit 38c8fe8
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,16 @@ jobs:
- ubuntu-latest
- windows-latest
python-version:
- "3.7" # Earliest version supported by genno; matches xarray
- "3.7" # Earliest version supported by genno; matches xarray/setup.cfg
- "3.8"
- "3.9"
- "3.10" # Latest Python release / latest testable on GitHub Actions

# For development versions of Python, compiled binary wheels are not
# available for some dependencies, e.g. llvmlite, numba, numpy, and/or
# pandas. Compiling these on the job runner requires a more elaborate
# build environment, currently out of scope for genno.
- "3.9" # Latest testable on GitHub Actions

# For new releases or development versions of Python, compiled binary
# wheels may not be available for some dependencies, e.g. llvmlite,
# numba, numpy, and/or pandas. Compiling these on the job runner
# requires a more elaborate build environment, currently out of scope
# for genno. Exclude these versions from CI.
# - "3.10" # Latest Python release / latest supported by genno
# - "3.11.0-alpha.2" # Development version

fail-fast: false
Expand Down

0 comments on commit 38c8fe8

Please sign in to comment.