build: migrate project to uv - #46
Open
st3v3nmw wants to merge 1 commit into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
Migrates project packaging, dependency management, and CI from Poetry to uv, addressing issue #32.
Changes:
- Adopts PEP 621 metadata and uv’s build backend.
- Updates test and integration workflows to use uv.
- Removes the Poetry lockfile and expands platform coverage.
Reviewed changes
Copilot reviewed 5 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
pyproject.toml |
Configures uv dependencies and build backend. |
poetry.lock |
Removes Poetry dependency locking. |
tox.ini |
Switches tox commands to uv. |
.github/workflows/test.yml |
Migrates linting and unit-test CI to uv. |
.github/workflows/integration-test.yml |
Migrates integration tests and adds Ubuntu 26.04. |
.github/workflows/integration-tpm.yml |
Pins the checkout action version. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
st3v3nmw
force-pushed
the
migrate-to-uv
branch
from
August 21, 2026 09:31
85c306f to
96a3eb5
Compare
st3v3nmw
force-pushed
the
migrate-to-uv
branch
from
August 21, 2026 09:37
96a3eb5 to
82d5117
Compare
st3v3nmw
marked this pull request as ready for review
August 21, 2026 09:38
Perfect5th
approved these changes
Aug 21, 2026
Perfect5th
left a comment
Contributor
There was a problem hiding this comment.
LGTM, thanks for this!
| - run: uv sync | ||
| - name: install additional python versions | ||
| run: | | ||
| sudo add-apt-repository ppa:deadsnakes/ppa |
Contributor
There was a problem hiding this comment.
Small aside: can uv take care of installing the different python versions?
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.
Closes #32
uvx migrate-to-uvdid most of the migration..