From e79e01fc973c207b15586f234c3224597d442373 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 18 Jan 2016 07:38:34 +0100 Subject: [PATCH] tox: Update pylint/astroid to 1.5.4/1.4.4. pylint: * Merge StringMethodChecker with StringFormatChecker. This fixes a bug where disabling all the messages and enabling only a handful of messages from the StringFormatChecker would have resulted in no messages at all. * Don't apply unneeded-not over sets. astroid: * unpack_infer raises InferenceError if it can't operate with the given sequences of nodes. * Support accessing properties with super(). * Enforce strong updates per frames. When looking up a name in a scope, Scope.lookup will return only the values which will be reachable after execution, as seen in the following code: a = 1 a = 2 In this case it doesn't make sense to return two values, but only the last one. --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index fd0b09c32..a4af87d2e 100644 --- a/tox.ini +++ b/tox.ini @@ -106,8 +106,8 @@ passenv = deps = {[testenv]deps} {[testenv:misc]deps} - astroid==1.4.3 - pylint==1.5.3 + astroid==1.4.4 + pylint==1.5.4 requests==2.9.1 commands = {envpython} scripts/link_pyqt.py --tox {envdir}