diff options
author | toonn <toonn@toonn.io> | 2022-06-10 14:30:54 +0200 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2022-06-10 14:30:54 +0200 |
commit | 00c84187ece4cddd0299528b5c722d85ea129c90 (patch) | |
tree | 6e7a95662b287a6c107c86d3e68c5393fe9b3c25 | |
parent | 1759b065335b5f1c97ba66b6a707e24ec3731a40 (diff) | |
download | ranger-00c84187ece4cddd0299528b5c722d85ea129c90.tar.gz |
pylint: Pin to 2.13.9
As of 2.14.0 PyLint dropped the python3 port checker. This means many of the features we want to disable, because we need syntax compatible with Python 2 are gone and we can no longer disable the checks.
-rw-r--r-- | requirements.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/requirements.txt b/requirements.txt index fc51e82a..c24c4584 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ flake8 -pylint +pylint==2.13.9 # Newer versions drop the python3 port checker, which we need pytest |