📌(backend) pin pylint to 3.x to resolve compatibility conflict

Restrict pylint version to 3.x in renovate configuration because
pylint-django 2.6.1 requires pylint<4, preventing automatic upgrades
to pylint 4.x that would create unresolvable dependency conflicts
until pylint-django releases compatible version.
This commit is contained in:
lebaudantoine
2025-11-13 10:46:16 +01:00
committed by aleb_the_flash
parent f8a37e55b1
commit a40af726b6
2 changed files with 7 additions and 1 deletions

View File

@@ -9,6 +9,12 @@
"matchManagers": ["pep621"],
"matchPackageNames": ["redis"]
},
{
"groupName": "allowed pylint versions",
"matchManagers": ["pep621"],
"matchPackageNames": ["pylint"],
"allowedVersions": "<4.0.0"
},
{
"enabled": false,
"groupName": "ignored js dependencies",