From 268b30ffb4d2bef9bea89f5d00c2a2cf51fea27a Mon Sep 17 00:00:00 2001 From: Will Evonosky Date: Wed, 4 Feb 2026 14:05:36 -0700 Subject: [PATCH 1/2] Update readme with install change for uv, dev group included by default --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6d379e4..c8136f2 100644 --- a/README.md +++ b/README.md @@ -136,8 +136,8 @@ Install the project in editable mode with development dependencies: # with pip pip install -e ".[dev]" -# with uv -uv sync --extra dev +# with uv (dev included by default) +uv sync # with poetry poetry install --extras dev From 64e16d7765a3df0e3aa8dfc055848c0e08fd74c9 Mon Sep 17 00:00:00 2001 From: Will Evonosky Date: Wed, 4 Feb 2026 14:12:50 -0700 Subject: [PATCH 2/2] Update checklist with uv sync command --- docs/CHECKLIST.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CHECKLIST.md b/docs/CHECKLIST.md index 3f3a0f3..ddc5996 100644 --- a/docs/CHECKLIST.md +++ b/docs/CHECKLIST.md @@ -57,7 +57,7 @@ install your project using the package manager of your choice: - [ ] **USER:** Install dependencies using **pip**, **uv**, or **poetry**: - `pip install -e ".[dev]"`. - - `uv sync --extra dev`. + - `uv sync`. - `poetry install --extras dev`. - [ ] **USER:** Run `prek install`. - [ ] **USER:** Run the application `python -m .main`.