Skip to content

Commit

Permalink
Stay on pylint 2.x.x for tests
Browse files Browse the repository at this point in the history
pylint 3.x.x brings significant changes, so current PRs may fail or even break on tests.
One of the cases that happened in ranger#2911 with pylint 3.0.1:
```
File "ranger/tests/pylint/python3.py", line 184, in Python3Checker
    __implements__ = interfaces.IAstroidChecker
                     ^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'pylint.interfaces' has no attribute 'IAstroidChecker'
make: *** [test_pylint] Error 1
```
  • Loading branch information
klevvit committed Oct 24, 2023
1 parent 136416c commit 4f7bb0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
flake8
pylint
pylint==2.17.7
pytest

0 comments on commit 4f7bb0d

Please sign in to comment.