From c40f4dc7d3ed753da9d4d396c8a9af2574163835 Mon Sep 17 00:00:00 2001 From: Kenya Otsuka Date: Tue, 16 Jun 2026 10:49:21 +0000 Subject: [PATCH] chore: ignore root uv.lock bdpy does not track the uv lockfile (CI resolves from pyproject.toml via pip), so ignore the locally generated uv.lock to keep `git status` clean and avoid accidental commits. Anchor the pattern with a leading slash so it only matches the repo-root lockfile, not any nested uv.lock. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index ecd033d2..c5dcd21c 100644 --- a/.gitignore +++ b/.gitignore @@ -27,6 +27,7 @@ test_versions /venv /venv-* /.venv +/uv.lock *.code-workspace