Conversation
Migrate the project's packaging and workflow tooling from Poetry to uv, keeping the dependency set, versions, extras, and Python floor identical to `develop` (a pure tooling migration, no dependency-content changes). - pyproject.toml: convert `[tool.poetry.*]` to PEP 621 `[project]` + `[dependency-groups]`; switch the build backend from poetry-core to hatchling with an explicit wheel/sdist target so the `buildingmotif` package and its builtin library data still ship. Caret constraints are expanded to `>=x,<next-major`; the exact pins (mypy, brick-tq-shacl) become `==`. The ingress extras (bacnet-ingress, xlsx-ingress, all-ingresses, all) regain the BAC0/openpyxl/netifaces/pytz specifiers that Poetry only carried in the dev group. License is declared as BSD-3-Clause with the LICENSE file shipped via license-files. - lockfile: replace poetry.lock with uv.lock. - CI/CD: swap snok/install-poetry for astral-sh/setup-uv, `poetry install` for `uv sync`, `poetry run` for `uv run`, `poetry build` for `uv build`; parallel test runs use `uv run --with pytest-xdist`. - Dockerfiles/start.sh: install uv, `uv sync --locked`, `uv run`. The api image moves off the unsupported python:3.9 base to python:3.11. - pre-commit, scripts/bump_dev_version.py, and developer docs updated to uv.
This branch has not been deployed
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.
No dependency or version changes