Bump pylint version. Old pylint did not find standard library stuff on 3.9.12.
This commit is contained in:
parent
20213628d7
commit
c8a3eb97a4
2 changed files with 4 additions and 1 deletions
|
@ -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,
|
||||
|
|
2
setup.py
2
setup.py
|
@ -50,7 +50,7 @@ setup(
|
|||
],
|
||||
extras_require={
|
||||
'lint': [
|
||||
'pylint==2.10.0'
|
||||
'pylint==2.13.9'
|
||||
],
|
||||
'test': [
|
||||
'coverage',
|
||||
|
|
Loading…
Reference in a new issue