From d5f16cddb0c3c8f04d4439e8fc2814f07aa087e1 Mon Sep 17 00:00:00 2001 From: Lebaud Antoine Date: Fri, 26 Jan 2024 16:22:55 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7(project)=20update=20Renovate=20con?= =?UTF-8?q?figuration=20to=20fix=20match=20manager=20issue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The current Renovate configuration is using the wrong match manager, as our project utilizes `pyproject.toml` instead of `setup.cfg`. This commit corrects the configuration to ensure compatibility with our project structure. --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 93c552c..36f44a5 100644 --- a/renovate.json +++ b/renovate.json @@ -7,7 +7,7 @@ "enabled": false, "groupName": "ignored python dependencies", "matchManagers": [ - "setup-cfg" + "pep621" ], "matchPackageNames": [] },