Stop pinning pylint/astroid to 1.3.1/1.2.1.
This commit is contained in:
parent
532ec30d00
commit
2e45c2c063
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
[MASTER]
|
[MASTER]
|
||||||
ignore=ez_setup.py
|
ignore=ez_setup.py
|
||||||
|
extension-pkg-whitelist=PyQt5,sip
|
||||||
|
|
||||||
[MESSAGES CONTROL]
|
[MESSAGES CONTROL]
|
||||||
disable=no-self-use,
|
disable=no-self-use,
|
||||||
@ -23,7 +24,8 @@ disable=no-self-use,
|
|||||||
too-many-instance-attributes,
|
too-many-instance-attributes,
|
||||||
unnecessary-lambda,
|
unnecessary-lambda,
|
||||||
blacklisted-name,
|
blacklisted-name,
|
||||||
too-many-lines
|
too-many-lines,
|
||||||
|
logging-format-interpolation
|
||||||
|
|
||||||
[BASIC]
|
[BASIC]
|
||||||
module-rgx=(__)?[a-z][a-z0-9_]*(__)?$
|
module-rgx=(__)?[a-z][a-z0-9_]*(__)?$
|
||||||
|
@ -70,8 +70,8 @@ def get_dev_packages(short=False):
|
|||||||
Args:
|
Args:
|
||||||
short: Remove the version specification.
|
short: Remove the version specification.
|
||||||
"""
|
"""
|
||||||
packages = ['colorlog', 'flake8', 'astroid==1.2.1', 'pylint==1.3.1',
|
packages = ['colorlog', 'flake8', 'astroid', 'pylint', 'pep257',
|
||||||
'pep257', 'colorama', 'beautifulsoup4']
|
'colorama', 'beautifulsoup4']
|
||||||
if short:
|
if short:
|
||||||
packages = [re.split(r'[<>=]', p)[0] for p in packages]
|
packages = [re.split(r'[<>=]', p)[0] for p in packages]
|
||||||
return packages
|
return packages
|
||||||
|
Loading…
Reference in New Issue
Block a user