From 3244dda31217fe6b46ae6c72c39cbdf51aaf6bd7 Mon Sep 17 00:00:00 2001 From: Nelson Alfonso Date: Tue, 7 Apr 2026 15:44:14 +0100 Subject: [PATCH] Add 'exclude-newer' configuration to uv tool in pyproject.toml files --- argo-kedro/pyproject.toml | 3 +++ argo-test/pyproject.toml | 3 +++ pyproject.toml | 2 ++ 3 files changed, 8 insertions(+) diff --git a/argo-kedro/pyproject.toml b/argo-kedro/pyproject.toml index 98aa520..a1549a8 100644 --- a/argo-kedro/pyproject.toml +++ b/argo-kedro/pyproject.toml @@ -64,3 +64,6 @@ include = ["argo_kedro*"] [tool.setuptools.package-data] argo_kedro = ["**/*.tmpl", "**/*.yml", "**/*.dockerignore", "**/*.Dockerfile"] + +[tool.uv] +exclude-newer = "1 week" \ No newline at end of file diff --git a/argo-test/pyproject.toml b/argo-test/pyproject.toml index ec69b59..dd0f5ec 100644 --- a/argo-test/pyproject.toml +++ b/argo-test/pyproject.toml @@ -86,3 +86,6 @@ ignore = [ [tool.kedro_telemetry] project_id = "ac60f8a981ee4ae8a2a0d6d8d7d28ee1" + +[tool.uv] +exclude-newer = "1 week" \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 28ac144..7b2f2f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,3 +7,5 @@ requires-python = "==3.12.*" [tool.uv.workspace] members = ["argo-kedro", "argo-test"] +[tool.uv] +exclude-newer = "1 week" \ No newline at end of file