Retire python3.9 - #82
Merged
Merged
Conversation
added 2 commits
July 17, 2026 15:11
Python 3.9 has been out of extended support for over half a year now. Removing support for it will allow us to finally update some crucial dependencies (like pyo3 and numpy) to recent versions. This commit removes Python 3.9 support from `pyproject.toml` and from CI, and updates the `pyo3` and `numpy` dependencies in `Cargo.toml` to the respective latest versions. All rust and python tests pass (tested with python python 3.12.11) but there are some compilation warnings.
robamler
force-pushed
the
retire-python3.9
branch
2 times, most recently
from
July 17, 2026 13:24
f9292c5 to
fa9a81a
Compare
Involves minor fixes to the rust code to make it compatible with the latest versions of the dependencies, and to resolve all clippy lints.
robamler
force-pushed
the
retire-python3.9
branch
from
July 17, 2026 13:25
fa9a81a to
097ecee
Compare
added 3 commits
July 17, 2026 15:55
The updated dependency `hashbrown` requires `edition2024`, which wasn't stabilized until rust 1.85 (released Feb 20, 2025). This is a breaking change and will thus require bumping the leading component of the version number.
We increased MSRV, which I consider a breaking change, thus the bump in leading version number.
robamler
force-pushed
the
retire-python3.9
branch
from
July 17, 2026 13:56
26b839a to
1c58350
Compare
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.9 has been out of extended support for over half a year now. Removing support for it will allow us to finally update some crucial dependencies (like pyo3 and numpy) to recent versions.