COMP: Drop Python 3.9 from default wheel build targets#126
Closed
hjmjohnson wants to merge 1 commit intov6.0b01from
Closed
COMP: Drop Python 3.9 from default wheel build targets#126hjmjohnson wants to merge 1 commit intov6.0b01from
hjmjohnson wants to merge 1 commit intov6.0b01from
Conversation
Most ITK 5.4+ remote module wheels declare requires-python >= 3.10
in pyproject.toml. The test-linux-notebooks job picks the first
element of python3-minor-versions ([0]) as its Python version.
With the old default ["9","10","11"], this meant installing
the built wheel into Python 3.9, which fails:
ERROR: Package 'itk-splitcomponents' requires a different Python:
3.9.25 not in '>=3.10'
The main branch already fixed this (default ["10","11"]).
Backport the same change to v6.0b01 so modules referencing
@v6.0b01 get working notebook tests.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Member
Author
|
This change is inline with many other remote module and ITK changes to drop python 3.9 |
dzenanz
approved these changes
Apr 13, 2026
Member
Author
|
Closing — the Python 3.9 drop was already merged upstream. Branch was 19 commits behind main; after rebase, the single commit was detected as already applied. |
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.
Drop Python 3.9 from the default
python3-minor-versionson the v6.0b01 branch, matching what main already has.Most ITK 5.4+ remote module wheels declare
requires-python >= "3.10"in pyproject.toml. Thetest-linux-notebooksjob pickspython3-minor-versions[0]as its Python — with the old default["9","10","11"], that's Python 3.9, which can't install>=3.10wheels.Affected modules
Any module referencing
@v6.0b01withtest-notebooks: truefails:Error: