83 update python versions across dockerfile, CI testing matrix, and other appearances#84
Merged
pacharanero merged 2 commits intoJun 16, 2026
Conversation
Member
|
Dupe of #86? |
Member
Author
|
Not a dupe but yes possibly confusing - I normally raise PRs on But the fix I wanted to include (a lot of So I ended up with #84 and #86 being dependent on #80. They would need to be merged in the order #80, #86, then #84 (confusingly) An alternative would be I could re-do #84 and #86 based on |
- Dockerfile: python:3.12-slim -> python:3.13-slim - docker-compose.yml: site-packages volume path 3.12 -> 3.13 - pyproject.toml: requires-python >=3.8 -> >=3.10; classifiers drop 3.9, add 3.13 - setup.py: python_requires ">3.8" -> ">=3.10"; classifiers synced with pyproject - CI test matrix: drop 3.9 (EOL Oct 2025), add 3.13 - CI publish workflow: 3.12 -> 3.13 - .binder/runtime.txt: 3.10 -> 3.12 (conservative; repo2docker support) Refs #83
3aeac08 to
7e598a9
Compare
mbarton
approved these changes
Jun 16, 2026
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.
Overview
setup.py, although I'm fairly sure it is not in use, it had drifted frompyproject.toml- but see Migrate fromsetup.pytopyproject.toml#23 and potentially remove.