From eaa59f6f26841d45ed2c6efff7d8dcaf4889f423 Mon Sep 17 00:00:00 2001 From: Claudiu Popa Date: Sun, 24 Aug 2014 22:13:07 +0300 Subject: 1.3.1. --HG-- branch : pylint-1.3 --- ChangeLog | 3 ++- DEPENDS | 2 +- __pkginfo__.py | 6 +++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 72d2cf2a6..9ec9fd0c0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,8 @@ ChangeLog for Pylint ==================== --- +2014-08-24 -- 1.3.1 + * Fix a false positive with string formatting checker, when encountering a string which uses only position-based arguments. Closes issue #285. diff --git a/DEPENDS b/DEPENDS index 37354556b..f84932fa3 100644 --- a/DEPENDS +++ b/DEPENDS @@ -1,3 +1,3 @@ python-logilab-common (>= 0.19.0) -python-astroid (>= 1.2.0) +python-astroid (>= 1.2.1) python-tk diff --git a/__pkginfo__.py b/__pkginfo__.py index 757bfe94b..f8bd352b2 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -19,14 +19,14 @@ import sys modname = distname = 'pylint' -numversion = (1, 3, 0) +numversion = (1, 3, 1) version = '.'.join([str(num) for num in numversion]) if sys.version_info < (2, 6): - install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2', + install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2.1', 'StringFormat'] else: - install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2'] + install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2.1'] license = 'GPL' description = "python code static checker" -- cgit v1.2.1