From 5a4115ec125a58423c6d732d5bb03b5c496c10f5 Mon Sep 17 00:00:00 2001 From: Sangam Kumar Date: Wed, 31 Jan 2018 01:46:52 +0530 Subject: [PATCH] PyLintBear: PyLintBear breaks on Python `3.5.0` This upgrade `pylint` to `1.7.2` and fixes the PylintBear breaks on Python `3.5.0` Closes https://github.com/coala/coala-bears/issues/1973 --- bear-requirements.txt | 2 +- bears/python/PyLintBear.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bear-requirements.txt b/bear-requirements.txt index 92d1354172..ffd6e6e448 100644 --- a/bear-requirements.txt +++ b/bear-requirements.txt @@ -24,7 +24,7 @@ proselint~=0.7.0 pycodestyle~=2.2 pydocstyle~=2.0 pyflakes~=1.5.0 -pylint~=1.6.0 +pylint~=1.7.2 pyroma~=2.2.0 pyyaml~=3.12 radon==1.4.0 diff --git a/bears/python/PyLintBear.py b/bears/python/PyLintBear.py index acab644bd7..6e3a6372df 100644 --- a/bears/python/PyLintBear.py +++ b/bears/python/PyLintBear.py @@ -23,7 +23,7 @@ class PyLintBear: separately. """ LANGUAGES = {'Python', 'Python 2', 'Python 3'} - REQUIREMENTS = {PipRequirement('pylint', '1.6.0')} + REQUIREMENTS = {PipRequirement('pylint', '1.7.2')} AUTHORS = {'The coala developers'} AUTHORS_EMAILS = {'coala-devel@googlegroups.com'} LICENSE = 'AGPL-3.0'