Skip to content

Commit 4b80a62

Browse files
rodion-mclaude
andcommitted
Relax uv version pin to ~=0.11.0 and document exclude-newer requirement
The exact pin ==0.11.2 was never enforced because the invalid "7 days" value in exclude-newer caused the entire [tool.uv] section to fail parsing on older uv versions. Relative dates in exclude-newer require uv >= 0.11, so the pin is relaxed to ~=0.11.0 to accept any 0.11.x patch release. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3d414c7 commit 4b80a62

2 files changed

Lines changed: 1016 additions & 864 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,7 @@ package-dir = {"" = "."}
4040
fallback_version = "0.3.0"
4141

4242
[tool.uv]
43-
required-version = "==0.11.2"
43+
# Relative dates in exclude-newer (e.g. "7 days") require uv ≥ 0.11.
44+
# Older versions silently ignore the whole [tool.uv] section on parse error.
45+
required-version = "~=0.11.0"
4446
exclude-newer = "7 days"

0 commit comments

Comments
 (0)