From c8a3eb97a4209fa122f9ac5021e63c894c45953d Mon Sep 17 00:00:00 2001 From: Jonathan Moody <103143855+moodyjon@users.noreply.github.com> Date: Thu, 16 Jun 2022 08:37:29 -0400 Subject: [PATCH] Bump pylint version. Old pylint did not find standard library stuff on 3.9.12. --- setup.cfg | 3 +++ setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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',