From a33bd8a12c905ea7d45885a7cf7d8610914f5bac Mon Sep 17 00:00:00 2001 From: mshafer-NI <23644905+mshafer-NI@users.noreply.github.com> Date: Fri, 13 Mar 2026 11:39:39 -0500 Subject: [PATCH 1/2] Also prevent setuptools from getting upgraded flake8-import-order < 0.19 require setuptools < 82, so tell Renovate to not upgrade either of these for now --- .github/renovate.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index b6d33ce..ec51ecd 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -23,9 +23,9 @@ ] }, { - "matchPackageNames": ["flake8-import-order"], // we're not compatible with 0.19.0 yet due to #226 + "matchPackageNames": ["/(flake8-import-order|setuptools)/"], // we're not compatible with 0.19.0 yet due to #226 "matchManagers": ["poetry"], "enabled": false } ] -} \ No newline at end of file +} From 99e3a3b8a9dcba5448d3f07a739c38641a31fb1c Mon Sep 17 00:00:00 2001 From: mshafer-NI <23644905+mshafer-NI@users.noreply.github.com> Date: Fri, 13 Mar 2026 12:46:18 -0500 Subject: [PATCH 2/2] Use list of strings --- .github/renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index ec51ecd..611ac2f 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -23,7 +23,7 @@ ] }, { - "matchPackageNames": ["/(flake8-import-order|setuptools)/"], // we're not compatible with 0.19.0 yet due to #226 + "matchPackageNames": ["flake8-import-order", "setuptools"], // we're not compatible with 0.19.0 yet due to #226 "matchManagers": ["poetry"], "enabled": false }