diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2015-12-02 18:18:27 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2015-12-02 18:18:27 +0200 |
commit | 5c193325936a3b8039ecacaee239abca9df1a573 (patch) | |
tree | d5c94e6a55e88d2c6e2040cf5a1c59312cd1deab | |
parent | 5430544805b80a099df22900042c7bb14276c330 (diff) | |
download | pylint-git-5c193325936a3b8039ecacaee239abca9df1a573.tar.gz |
Prepare 1.4.5.
--HG--
branch : 1.4.4
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | pylint/__pkginfo__.py | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,6 +1,11 @@ ChangeLog for Pylint -------------------- +2015-12-02 -- 1.4.5 + + * Restrict astroid to 1.3.X only, since 1.4 is not compatible + with 1.3. + 2015-06-30 -- 1.4.4 * Avoid breaking pylint when using logilab.common >= 1.0. diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index 33ae5b647..150e5ef5f 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -19,10 +19,10 @@ from __future__ import absolute_import modname = distname = 'pylint' -numversion = (1, 4, 4) +numversion = (1, 4, 5) version = '.'.join([str(num) for num in numversion]) -install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.3.6', 'six'] +install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.3.6,<1.4.0', 'six'] license = 'GPL' description = "python code static checker" |