Migrate to uv and setup dependabot#83
Merged
jovnc merged 4 commits intogit-mastery:mainfrom Mar 25, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Migrates the repository’s Python dependency and tooling workflow from pip/requirements.txt to Astral’s uv for local development and GitHub Actions, aligning with Issue #81.
Changes:
- Added
pyproject.toml+uv.lockand removedrequirements.txt. - Updated CI workflows and local scripts/hooks to install and run tooling via
uv sync/uv run .... - Updated developer documentation (
README.md,AGENTS.md) and pinned Python version via.python-version.
Reviewed changes
Copilot reviewed 9 out of 11 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
uv.lock |
New lockfile capturing fully resolved dependencies for reproducible installs. |
pyproject.toml |
Defines project + dev dependency groups for uv-based workflows. |
requirements.txt |
Removed in favor of pyproject.toml/uv.lock. |
scripts/build_test_e2e.sh |
Runs PyInstaller and E2E tests via uv run. |
lefthook.yml |
Runs ruff/format/mypy via uv run in pre-commit hooks. |
README.md |
Updates local dev setup instructions to uv sync. |
AGENTS.md |
Updates repo guidance to use uv for running and installing deps. |
.python-version |
Pins local Python version to 3.13 for dev tooling. |
.github/workflows/test.yml |
Switches CI dependency install + tool execution to uv. |
.github/workflows/test-pr.yml |
Switches PR CI dependency install + tool execution to uv. |
.github/workflows/publish.yml |
Switches release build steps to uv and updates Arch build container setup. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 10 out of 12 changed files in this pull request and generated 4 comments.
💡 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.
Summary
Fixes #81
Fixes #72