summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2016-03-21 18:34:10 +0000
committerClaudiu Popa <pcmanticore@gmail.com>2016-03-21 18:34:10 +0000
commit20c564b15c1a5bd2b6314aa0d3db6c76650268e0 (patch)
tree8cb42f472b2a7b3815cd8708b7333183bbfd4b03
parent9f82947451d1022ca6b51594120415f14aa4020d (diff)
downloadpylint-git-pylint-1.5.5.tar.gz
Prepare 1.5.5pylint-1.5.5
-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',
]