From bafe59b8c72fe9674899cb3a05a804d6b2923c78 Mon Sep 17 00:00:00 2001 From: FBumann <117816358+FBumann@users.noreply.github.com> Date: Sun, 31 May 2026 19:36:03 +0200 Subject: [PATCH 1/2] chore: bootstrap initial alpha release Release-As: 0.0.1-alpha.0 From 9823baa42a820c77a04467fbc2fada4a06bf6c28 Mon Sep 17 00:00:00 2001 From: FBumann <117816358+FBumann@users.noreply.github.com> Date: Sun, 31 May 2026 19:39:07 +0200 Subject: [PATCH 2/2] ci: install docs deps via --group not --extra The docs group lives under [dependency-groups], so 'uv sync --extra docs' fails with 'Extra docs is not defined'. Matches docs.yaml which already uses --group docs. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5fddd08..750d87d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -98,7 +98,7 @@ jobs: python-version: "3.12" - name: Install dependencies - run: uv sync --extra docs + run: uv sync --group docs - name: Build docs run: uv run mkdocs build --strict