build: migrate from poetry to uv#22
Merged
Merged
Conversation
Convert pyproject to PEP 621, switch build backend to uv_build (flat layout, module-root = ""), replace poetry.lock with uv.lock, and update the Test and Publish CI workflows to use astral-sh/setup-uv with uv sync/build/publish. Published library; no Dockerfiles. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Migrates next-cvat from Poetry to uv.
Changes
[tool.poetry]to PEP 621[project]; deps and dev group preserved (dev group via[dependency-groups],default-groups = "all").poetry-core->uv_build. Flat layout (thenext_cvatpackage lives at the repo root), so[tool.uv.build-backend] module-root = "".uv buildproduces a wheel containingnext_cvat/.poetry.lockwithuv.lock(uv lock --checkpasses). Re-resolved with--ignore-locked-versions(the old lock pinned an unsatisfiable typer/click combo).test.ymlandpublish.ymlnow useastral-sh/setup-uv@v8.2.0(cache enabled),uv sync --locked,uv build, anduv publish(to PyPI viaPYPI_TOKEN). Dropped setup-python + pip/poetry install. No private deps were needed (all deps resolve from PyPI), so the unusedPACKAGR_TOKENinstall creds were removed.Validation
uv lock --check: passesuv build: wheel built, containsnext_cvat/Library; no Dockerfiles.
🤖 Generated with Claude Code