build: migrate from poetry to uv#99
Merged
Merged
Conversation
Convert to PEP 621 pyproject with uv_build backend (flat layout: module-root="", module-name="datastream"). Replace poetry.lock with uv.lock, pin Python 3.10. Migrate test, publish, and gh-pages CI workflows to setup-uv + uv sync/run/build/publish. Library (published to PyPI); no Dockerfiles, no private deps. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
fippli
approved these changes
Jul 1, 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.
Migrates the project from Poetry to uv.
Changes
[tool.poetry]to PEP 621[project]. Build backend is nowuv_build(flat layout preserved via[tool.uv.build-backend]module-root = "",module-name = "datastream"so the wheel ships thedatastreampackage). Dev deps moved to[dependency-groups].poetry.lockremoved,uv.lockadded (82 packages, no git sources).test.yml,publish.yml,gh-pages.ymlmigrated toastral-sh/setup-uv+uv sync --locked/uv run/uv build. Publish usesuv version "$(git tag --points-at HEAD)"+uv build+uv publishto PyPI (PYPI_TOKEN).Library, published to PyPI. No Dockerfiles, no private index dependencies.
Validation
uv lock --check: passesuv run pytest-> 54 passed (Python 3.10)uv build: wheel + sdist build, wheel contains thedatastreampackagemkdocs build: succeeds🤖 Generated with Claude Code