summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-12-02 18:18:27 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-12-02 18:18:27 +0200
commitb4ffd8c89894744e8334cb7db292d3afe0f842ab (patch)
tree18810df11b816240a55c14320ee1b852402e1c6d
parentb106ee1644e86509b4ecb61524198915cd9abba4 (diff)
downloadpylint-b4ffd8c89894744e8334cb7db292d3afe0f842ab.tar.gz
Prepare 1.4.5.
-rw-r--r--ChangeLog5
-rw-r--r--pylint/__pkginfo__.py4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e583a3f..b6118d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 33ae5b6..150e5ef 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"