forked from LBRYCommunity/lbry-sdk
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,
|
no-else-return,
|
||||||
cyclic-import,
|
cyclic-import,
|
||||||
missing-docstring,
|
missing-docstring,
|
||||||
|
consider-using-f-string,
|
||||||
|
no-self-use,
|
||||||
|
try-except-raise,
|
||||||
duplicate-code,
|
duplicate-code,
|
||||||
expression-not-assigned,
|
expression-not-assigned,
|
||||||
inconsistent-return-statements,
|
inconsistent-return-statements,
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -50,7 +50,7 @@ setup(
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
'lint': [
|
'lint': [
|
||||||
'pylint==2.10.0'
|
'pylint==2.13.9'
|
||||||
],
|
],
|
||||||
'test': [
|
'test': [
|
||||||
'coverage',
|
'coverage',
|
||||||
|
|
Loading…
Reference in a new issue