Migrate from Poetry to uv#384
Merged
Merged
Conversation
Convert packaging/dependency management from Poetry to uv: - pyproject.toml: [tool.poetry] -> PEP 621 [project]; dependency groups -> [dependency-groups]; build backend -> hatchling + hatch-vcs (preserves git-tag dynamic versioning). Force-include the firmware and gnw_patch .bin artifacts via [tool.hatch.build] artifacts, matching the old [tool.poetry] include list. - __init__.py: derive __version__ from importlib.metadata instead of poetry-dynamic-versioning source substitution. - CI (test/deploy), readthedocs, pre-commit, and docs: use uv instead of poetry. - Replace poetry.lock with uv.lock. - Move keystone-engine to an opt-in `patch` group: it has no macOS arm64 wheel and self-builds with a tag uv rejects, which would break default `uv sync` on Apple Silicon (incl. CI). It is only lazily imported for regenerating firmware patch binaries and no tests use it. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
4217805 to
b23f43a
Compare
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.
Convert packaging/dependency management from Poetry to uv:
[dependency-groups]; build backend -> hatchling + uv-dynamic-versioning
(preserves git-tag/semver dynamic versioning). Force-include the firmware
and gnw_patch .bin artifacts via [tool.hatch.build] artifacts, matching the
old [tool.poetry] include list.
patchgroup: it has no macOS arm64 wheel and self-builds with a tag uv rejects, which would break defaultuv syncon Apple Silicon (incl. CI). It is only lazily imported for regenerating firmware patch binaries and no tests use it.