Migrate to uv#35
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR migrates the project from pip-based dependency management to uv, a modern Python package manager. The changes include adding a uv.lock file, updating all documentation and commands to use uv, modifying the Makefile to use uv run for tool execution, and updating GitHub Actions workflows to use uv.
- Updated dependency management from pip to uv across the entire project
- Added uv.lock for reproducible builds
- Modified all documentation to reference uv instead of pip
- Updated CI/CD workflows to use uv
Reviewed changes
Copilot reviewed 15 out of 16 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| uv.lock | New lockfile generated by uv containing all dependencies with pinned versions |
| pyproject.toml | Added setuptools and wheel to dev dependencies |
| Makefile | Replaced pip-based commands with uv equivalents; added sync targets |
| .github/workflows/*.yml | Updated CI/CD workflows to use uv and astral-sh/setup-uv action |
| docs/*.md | Updated installation and setup instructions to use uv commands |
| examples/kv_store/README.md | Changed from pip install to uv run commands |
| examples/kv_store/requirements.txt | Removed (replaced by uv run --with approach) |
| .github/dependabot.yml | Changed package ecosystem from pip to uv |
| .github/CONTRIBUTING.md | Updated setup instructions to use uv |
| REUSE.toml | Added copyright annotation for uv.lock file |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.