Use dependency groups for Python dev deps#2038
Open
brettcannon wants to merge 1 commit into
Open
Conversation
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 0430f7db-6da1-47a9-9a35-fec3f1bbc17e
Contributor
There was a problem hiding this comment.
Pull request overview
Moves Python development dependencies to a PEP 735 dependency group and updates installation guidance accordingly.
Changes:
- Preserves
telemetryas an optional package extra. - Moves development tools into the
devdependency group. - Updates developer install commands to use
--group dev.
Show a summary per file
| File | Description |
|---|---|
python/pyproject.toml |
Defines the new development dependency group. |
justfile |
Updates automated Python dependency installation. |
CONTRIBUTING.md |
Updates contributor setup instructions. |
.github/copilot-instructions.md |
Updates Python workflow guidance. |
Review details
- Files reviewed: 4/4 changed files
- Comments generated: 0
- Review effort level: Medium
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 change moves the Python development dependencies out of the project optional-dependencies section and into a PEP 735 dependency group in
python/pyproject.toml.The repo's Python install guidance now uses
uv pip install -e . --group dev, so the same dev setup is available through the newer dependency-group mechanism. I also validated the updated install command withuv.