diff --git a/setup.cfg b/setup.cfg index a2e5f9672..9c8ebe60b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -28,6 +28,9 @@ disable= no-else-return, cyclic-import, missing-docstring, + consider-using-f-string, + no-self-use, + try-except-raise, duplicate-code, expression-not-assigned, inconsistent-return-statements, diff --git a/setup.py b/setup.py index 26c4ab81c..0eb9c6432 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ setup( ], extras_require={ 'lint': [ - 'pylint==2.10.0' + 'pylint==2.13.9' ], 'test': [ 'coverage',