From f1668af9329d1e93e2cfd7a38eead44480806db3 Mon Sep 17 00:00:00 2001 From: Sebastian Raschka Date: Tue, 31 Mar 2026 20:10:15 -0400 Subject: [PATCH] uv packages must be 7 days old (#994) --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 913af59..20f97e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,6 +28,9 @@ dependencies = [ "pytest>=8.3.5", ] +[tool.uv] +exclude-newer = "7 days" # Requires a recent uv; run `uv self update` if unsupported + [tool.uv.sources] llms-from-scratch = { workspace = true }