From a354f3f1b7f355e84890bdb26ed6bed8f4779ebe Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Wed, 19 Aug 2026 21:01:29 +0000 Subject: [PATCH] chore: remove stray empty uv.lock MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit uv.lock was committed by accident in #125 (a media-captions PR) on 2026-06-17. It is a 3-line stub: version = 1 revision = 3 requires-python = ">=3.12" Zero [[package]] entries — it locks nothing. It also declares requires-python >=3.12, contradicting the project's ^3.10. Nothing reads it: no workflow, script, or doc references uv.lock or any uv command. This project is Poetry-managed. It is worth removing on those grounds alone, but there is also a suspected link to a stuck dependency graph. GitHub has not re-parsed poetry.lock since 2026-06-17, and the timing brackets this file: 16:47 #124 poetry.lock changed -> parsed OK (still what the dependency graph displays today) 18:42 #125 uv.lock added Aug 12 #131 poetry.lock changed -> ignored Aug 18 #145 poetry.lock changed -> ignored uv.lock is the only manifest-like file added in that window. As a result the graph still reports pre-June versions (torch 2.7.1, cryptography 46.0.3, gitpython 3.1.45) and is missing wandb, pyarrow and optuna, which #131 added in August. 62 Dependabot alerts remain open against versions no longer present anywhere on main. This is a timing correlation, not a proven cause — GitHub's docs do not list uv.lock among supported Python manifests, so there is no documented mechanism for it to interfere. Deleting it is correct housekeeping either way, and it is the one lever the evidence points at. Deliberately scoped to this single deletion: touching poetry.lock in the same commit would itself force a re-parse and confound the test. If the graph refreshes after this merges, uv.lock was the cause. If not, this is a GitHub-side ingestion failure and the next step is a support ticket. Co-Authored-By: Claude Opus 5 (1M context) --- uv.lock | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 uv.lock diff --git a/uv.lock b/uv.lock deleted file mode 100644 index 7518fc9..0000000 --- a/uv.lock +++ /dev/null @@ -1,3 +0,0 @@ -version = 1 -revision = 3 -requires-python = ">=3.12"