chore: add Python 3.12 and 3.13 to CI#139
Draft
KenyaOtsuka wants to merge 1 commit into
Draft
Conversation
Raise the requires-python upper bound to < 3.14 and add Python 3.12 and 3.13 to the blocking CI matrix. Python 3.14 is intentionally left out for now because nipy does not yet provide Python 3.14-compatible distributions. It can be added separately once that dependency blocker is resolved. Refs KamitaniLab#120
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.
Raise the
requires-pythonupper bound to< 3.14and add Python 3.12 and 3.13 to the blocking CI matrix.Changes
pyproject.toml:requires-python>= 3.8, < 3.12→>= 3.8, < 3.14ci.yml: blockingtestmatrix["3.10", "3.11"]→["3.10", "3.11", "3.12", "3.13"]Notes
Python 3.14 is intentionally left out:
nipy(latest 0.6.1) does not yet provide a Python 3.14-compatible distribution.The remaining FastL2LiR CI failure appears to be caused by a PyFastL2LiR NumPy 2.4 compatibility issue, not by this PR. It matches
the upstream fix in KamitaniLab/PyFastL2LiR@2eef75d, which has not been released yet.
Refs #120