From 58a097411723228d0c382a92b57572af9e2598aa Mon Sep 17 00:00:00 2001 From: Padreug Date: Tue, 26 May 2026 23:33:49 +0200 Subject: [PATCH] chore: ignore uv.lock until PEP 621 migration uv.lock is a header-only file (no deps pinned) because pyproject.toml still uses [tool.poetry] tables that uv can't read. Ignore for now. Real fix tracked at aiolabs/satmachineadmin#28. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 6228718..4750fd5 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,8 @@ node_modules data/ *.sqlite3 *.sqlite3-journal + +# uv lockfile — pyproject.toml still uses [tool.poetry] syntax, so uv lock +# produces a header-only file that pins nothing. Ignore until the +# PEP 621 migration lands (aiolabs/satmachineadmin#28). +uv.lock