From 11a60419b25c7d9e5968677de3c939abcea5da87 Mon Sep 17 00:00:00 2001 From: Edoardo Debenedetti Date: Tue, 31 Mar 2026 13:09:47 +0200 Subject: [PATCH] Add setting to avoid installing packages newer than 7 days --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 9d6d3ed..32f1085 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,6 +47,9 @@ docs=["griffe-pydantic>=1.2.0", "mike>=2.1", "mkdocs>=1.6", "mkdocs-material>=9.5", "mkdocstrings[python]>=0.28"] examples=["ipykernel<7.0.0", "rich>=14.2.0"] +[tool.uv] + exclude-newer = "P7D" # exclude packages updated in the last 7 days to avoid supply chain attacks + [tool.ruff] line-length=120 exclude=[".venv", "examples"]