feat: Migrate to pyproject.toml and use uv as the project manager#49
Open
DhavalGojiya wants to merge 1 commit into
Open
feat: Migrate to pyproject.toml and use uv as the project manager#49DhavalGojiya wants to merge 1 commit into
DhavalGojiya wants to merge 1 commit into
Conversation
DhavalGojiya
commented
Mar 17, 2026
| authors = [ | ||
| { name = "Evan Sonderegger", email = "evan@rpy.xyz" }, | ||
| ] | ||
| requires-python = ">=3.10" |
Author
There was a problem hiding this comment.
One question:
This package currently does not specify any Python version constraint. However, Python 3.9 and earlier versions have reached their end-of-life (EOL): https://devguide.python.org/versions/
Should we now only support Python 3.10 and above? If yes, we should need to also bump the package version from 0.9.1 to 0.10.0
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.
Description
Migrate the package from the legacy
setup.pyconfiguration topyproject.toml. PEP-518Add uv as the project and package manager. It is a fast, Rust-based tool that manages the environment, dependencies, and packaging in a single place.
Updated
README.mdto set up the project with uv using a single commandCode