From 80715a354f4e6d78c352d3763a9230bc531d0bdb Mon Sep 17 00:00:00 2001 From: testvalue Date: Tue, 7 Apr 2026 20:08:21 -0400 Subject: [PATCH] fix(deps): ignores requires-python in renovate config --- renovate.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/renovate.json b/renovate.json index 1f7c3e7..bb5e5d2 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,13 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "description": [ "Managed by khepri-deps/renovate — global config provides weekly Monday schedule, 14-day release cooldown, and vulnerability alert bypass." + ], + "packageRules": [ + { + "description": "Do not modify requires-python — this is a minimum version constraint, not a pinnable dependency", + "matchDepNames": ["python"], + "matchManagers": ["pep621"], + "enabled": false + } ] }