Conversation
Reviewer's GuideIntroduce uv-based dependency management by defining the project metadata and tooling configuration in a new pyproject.toml, centralizing formatter/linter settings there, and adding a uv.lock file while simplifying the legacy pre-commit configuration. Flow diagram for new uv-based dependency and dev workflowflowchart TD
A["Edit pyproject.toml (metadata, dependencies, tools)"] --> B["Run uv sync / uv pip to resolve dependencies"]
B --> C["uv updates uv.lock with resolved versions"]
C --> D["Environment uses locked dependencies"]
A --> E["Configure black and isort in pyproject.toml"]
E --> F["pre-commit reads tool configs from pyproject.toml"]
F --> G["Run pre-commit (black, isort, others) on changed files"]
A --> H["Configure build-system for hatch / hatch-vcs"]
H --> I["Run hatch build to create distributions"]
File-Level Changes
Assessment against linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #239 +/- ##
==========================================
- Coverage 98.17% 98.12% -0.05%
==========================================
Files 30 26 -4
Lines 987 961 -26
==========================================
- Hits 969 943 -26
Misses 18 18 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Changes proposed in this pull request:
Checklist
This section is for the PR reviewer
[ENH],[FIX],[REF],[TST],[CI],[MNT],[INF],[MODEL],[DOC]) (see our Contributing Guidelines for more info)skip-release(to be applied by maintainers only)Closes #XXXXFor new features:
For bug fixes:
Summary by Sourcery
Introduce standardized project metadata and dependency management via pyproject-based configuration and locking.
Build: