Bump pylint version. Old pylint did not find standard library stuff on 3.9.12.

This commit is contained in:
Jonathan Moody 2022-06-16 08:37:29 -04:00 committed by Lex Berezhny
parent 20213628d7
commit c8a3eb97a4
2 changed files with 4 additions and 1 deletions

View file

@ -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,

View file

@ -50,7 +50,7 @@ setup(
],
extras_require={
'lint': [
'pylint==2.10.0'
'pylint==2.13.9'
],
'test': [
'coverage',