Open
Conversation
Co-authored-by: norkans7 <1040571+norkans7@users.noreply.github.com>
Co-authored-by: norkans7 <1040571+norkans7@users.noreply.github.com>
…d publishing Co-authored-by: norkans7 <1040571+norkans7@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Switch to use uv python package manager
Migrate from Poetry to uv package manager
Jan 8, 2026
norkans7
reviewed
Jan 8, 2026
.github/workflows/ci.yml
Outdated
Co-authored-by: norkans7 <1040571+norkans7@users.noreply.github.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #226 +/- ##
=======================================
Coverage 93.32% 93.32%
=======================================
Files 29 29
Lines 1843 1843
=======================================
Hits 1720 1720
Misses 123 123 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
This pull request migrates the package manager from Poetry to uv, bringing faster and standards-compliant package management to the project. The changes modernize the build system by adopting PEP 621 format and switching to hatchling as the build backend.
Key Changes:
- Migrated from Poetry-specific pyproject.toml format to PEP 621 standard format
- Changed build backend from poetry-core to hatchling
- Updated CI/CD workflow to use uv commands instead of Poetry commands
Reviewed changes
Copilot reviewed 2 out of 5 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| uv.lock | New lock file with 61 resolved packages replacing poetry.lock |
| .gitignore | Added .venv/ to ignore uv virtual environments |
| pyproject.toml | Migrated to PEP 621 format with hatchling build backend |
| .github/workflows/ci.yml | Updated CI to use astral-sh/setup-uv and uv commands |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
rowanseymour
approved these changes
Jan 8, 2026
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.
Replaces Poetry with uv for faster, standards-compliant package management.
Changes
pyproject.toml
[project]instead of[tool.poetry])poetry-core→hatchling[project.optional-dependencies]isort[pyproject]extra (unsupported in uv), kept as dev dependency only[tool.hatch.build.targets.wheel]to specify package locationCI Workflow
snok/install-poetry@v1withastral-sh/setup-uv@v7poetry run→uv run,poetry install→uv sync --extra devuv build && uv publishwith trusted publishingLock Files
uv.lock(61 packages resolved)poetry.lockUsage
Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.