From 0a68701e2bf4c1469dc87037446367ab25623a02 Mon Sep 17 00:00:00 2001 From: Matvey Arye Date: Tue, 7 Jan 2025 11:13:21 -0500 Subject: [PATCH] chore: fix uv caching via config uv caches info about local packages you are installing unless some special files are touched. This prevents changes to local files being installed and thus makes the development workflow broken. Turn off caching on the local package --- projects/extension/pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/projects/extension/pyproject.toml b/projects/extension/pyproject.toml index 7f2cca0d6..bdfaf9707 100644 --- a/projects/extension/pyproject.toml +++ b/projects/extension/pyproject.toml @@ -76,3 +76,6 @@ unfixable = [] # Allow unused variables when underscore-prefixed. dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" + +[tool.uv] +reinstall-package = ["pgai"]