Skip to content

Commit 82e1783

Browse files
committed
📌(backend) pint pylint to version < 4.0.0
django-pylint is not compatible with pylint 4. We have to pin the pylint version while the compatibility is not effective. See pylint-dev/pylint-django#467
1 parent aa2b9ed commit 82e1783

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

renovate.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
"matchPackageNames": ["redis"],
2020
"allowedVersions": "<6.0.0"
2121
},
22+
{
23+
"groupName": "allowed pylint versions",
24+
"matchManagers": ["pep621"],
25+
"matchPackageNames": ["pylint"],
26+
"allowedVersions": "<4.0.0"
27+
},
2228
{
2329
"enabled": false,
2430
"groupName": "ignored js dependencies",

src/backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ dev = [
7979
"ipython==9.6.0",
8080
"pyfakefs==5.10.0",
8181
"pylint-django==2.6.1",
82-
"pylint==4.0.2",
82+
"pylint<4.0.0",
8383
"pytest-cov==7.0.0",
8484
"pytest-django==4.11.1",
8585
"pytest==8.4.2",

0 commit comments

Comments
 (0)