From 3557e7d909f7523b83d9da67602ef32b39c09cbe Mon Sep 17 00:00:00 2001 From: Byron Williams Date: Wed, 3 Jun 2026 21:44:50 -0700 Subject: [PATCH] fix(renovate): cover pep621 in enabledManagers The repo migrated off Poetry to pep621 (pyproject.toml [project] with hatchling build backend, uv.lock, no poetry.lock). enabledManagers still listed poetry, so Renovate produced zero Python dependency PRs while 54 alerts stayed open. Replace poetry with pep621 so Renovate detects and updates Python dependencies. Co-Authored-By: Claude Sonnet 4.6 --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index de9adae..8a85de0 100644 --- a/renovate.json +++ b/renovate.json @@ -206,7 +206,7 @@ } ], "enabledManagers": [ - "poetry", + "pep621", "github-actions" ] }