Skip to content

Commit

Permalink
No longer treat 3.12 as experimental on CI
Browse files Browse the repository at this point in the history
Since Python 3.12.0 stable has been released, as well as now being
available via setup-python, per:
https://github.com/actions/python-versions/blob/main/versions-manifest.json

The main practical effect of this is that continue-on-error is no
longer set to true for 3.12, so 3.12 is no longer special-cased to
refrain from cancelling other test jobs when its test job fails.

Another effect is that 3.12 can longer be selected as a prerelease.
  • Loading branch information
EliahKagan committed Oct 3, 2023
1 parent cd8da41 commit 00bbc44
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- experimental: false
- python-version: "3.12"
experimental: true
continue-on-error: ${{ matrix.experimental }}

steps:
Expand Down

0 comments on commit 00bbc44

Please sign in to comment.