summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--DEPENDS2
-rw-r--r--pylint/__pkginfo__.py4
3 files changed, 5 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index a9445bd50..8cabc6464 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,8 @@
ChangeLog for Pylint
--------------------
---
+2016-03-21 -- 1.5.5
+
* Let visit_importfrom from Python 3 porting checker be called when everything is disabled
Because the visit method was filtering the patterns it was expecting to be activated,
diff --git a/DEPENDS b/DEPENDS
index 50c8ae7b5..3939886db 100644
--- a/DEPENDS
+++ b/DEPENDS
@@ -1,2 +1,2 @@
-python-astroid (>= 1.4.0)
+python-astroid (>= 1.4.5)
python-tk
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index c7bbee51e..f5eea15ed 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -23,11 +23,11 @@ from os.path import join
modname = distname = 'pylint'
-numversion = (1, 5, 4)
+numversion = (1, 5, 5)
version = '.'.join([str(num) for num in numversion])
install_requires = [
- 'astroid>=1.4.1,<1.5.0',
+ 'astroid>=1.4.5,<1.5.0',
'six',
]