Enable support of Python 3.15 - #378
Draft
antonwolfy wants to merge 2 commits into
Draft
Conversation
Add Python 3.15 to the CI matrices and package metadata: - pyproject.toml: add the 3.15 classifier and bump requires-python to <3.16 - clang smoke builds: add 3.15 and allow-prereleases in setup-python - build_pip: add 3.15 and the conda-forge/label/python_rc RC channel - conda-package(-cf): add 3.15 rows (numpy 2.5) and the python_rc channel
setup-miniconda creates the environment with python=3.15 using only its own 'channels' input, so the release candidate must be available there too - the channel added to the later conda build/CHANNELS steps is not enough.
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.
This PR adds Python 3.15 across the CI matrices and package metadata.
Note, it relies on the legacy (GIL) behavior for 3.15; free-threading support is handled separately in #357.