Add support for Python 3.15 - #432
Open
kytta wants to merge 2 commits into
Open
Conversation
alex
reviewed
Aug 22, 2026
| uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 | ||
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
| allow-prereleases: true |
Member
There was a problem hiding this comment.
We don't use allow-preleases. The correct thing to do is specify 3.15-dewv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Python 3.15 is not out yet, but it has entered "release candidate" phase, meaning the ABI and features are now stable. PSF recommends third-party projects maintainers to test and declare support for this version.
This PR adds 3.15 to the classifiers in the setup.py and adds 3.15 to the test matrix. For the latter, I had to add
allow-prereleases: true; it will take prereleases only for versions that hadn't come out yet (3.15 -> 3.15.0rc1) and will become redundant on 2026-10-01