Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR migrates the project from using pip/hatch to UV for dependency management and build tooling. The changes standardize on UV as the primary package manager while maintaining compatibility with the existing Python project structure.
Key changes:
- Replaces pip-based dependency management with UV's dependency groups
- Updates build system to use UV with dynamic versioning
- Migrates CI/CD workflows to use UV commands instead of pip/hatch
Reviewed Changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| pyproject.toml | Converts optional dependencies to UV dependency groups and configures UV dynamic versioning |
| .python-version | Adds Python version specification for UV |
| .github/workflows/tests.yml | Updates test workflow to use UV for dependency installation and command execution |
| .github/workflows/publish.yml | Simplifies publish workflow to use UV build instead of hatch |
| .github/dependabot.yml | Changes package ecosystem from pip to uv for automated dependency updates |
Comments suppressed due to low confidence (3)
pyproject.toml:7
- Black version 25.1 does not exist. The latest stable version of Black is in the 24.x series. Consider using "black~=24.10" or a similar existing version.
"black~=25.1",
pyproject.toml:15
- MyPy version 1.17 does not exist. The latest stable version of MyPy is in the 1.11.x series. Consider using "mypy~=1.11" or verify the correct version.
"mypy~=1.17",
.github/workflows/tests.yml:17
- Python 3.14 has not been released yet. The latest stable Python version is 3.13. Consider removing "3.14" from the test matrix or use "3.14-dev" if you specifically want to test against development versions.
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
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.
No description provided.