Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR replaces Poetry with uv for dependency and project management, updates CI workflows accordingly, and refreshes documentation and metadata to reflect these changes.
- Migrate from Poetry commands to
uv(sync,run,build,publish) - Update GitHub Actions workflows to install and use
uv - Revise README and CHANGES.md to document the switch and bump version metadata
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| pyproject.toml | Swapped Poetry config for Hatchling and added uv groups |
| README.md | Changed install/test/publish commands from Poetry to uv |
| CHANGES.md | Added version 0.0.12 entry documenting the migration |
| .github/workflows/release.yaml | Updated release pipeline to use astral-sh/setup-uv and uv commands |
| .github/workflows/branch.yaml | Updated test and code-quality jobs to use uv commands |
Update after Copilot's suggestion. Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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.
This pull request transitions the project from Poetry to
uvfor dependency and project management, updates workflows and configurations accordingly, and introduces minor documentation and metadata updates.Migration from Poetry to
uv:poetrycommands withuvcommands in.github/workflows/branch.yamland.github/workflows/release.yaml. This includes usinguv syncfor dependency installation,uv runfor running commands, anduv build/uv publishfor building and publishing the package. [1] [2]README.mdto reflect the switch touv, including installation and testing instructions.CHANGES.mdto document the migration touvin version 0.0.12.Configuration updates:
poetryconfiguration inpyproject.tomlwithhatchlingfor build management and added a[dependency-groups]section for development dependencies. [1] [2]requires-pythonfield to>=3.10,<4. [1] [2]Minor changes:
CHANGES.mdfor version 0.0.8.[project]section ofpyproject.toml.