diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2015-12-02 16:00:38 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2015-12-02 16:00:38 +0200 |
commit | 83250d3a6f78d80c3eb7214ca2e2a19e4ed0eb7f (patch) | |
tree | 6dcb9e2e65db470cb7ac817528a48492d1eafd85 | |
parent | 2d151cd83e5d169ecc874001aa10bb6dc6093718 (diff) | |
download | pylint-git-83250d3a6f78d80c3eb7214ca2e2a19e4ed0eb7f.tar.gz |
Prepare a small bug fix release.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | pylint/__pkginfo__.py | 4 |
2 files changed, 4 insertions, 3 deletions
@@ -1,7 +1,8 @@ ChangeLog for Pylint -------------------- --- +2015-12-02 -- 1.5.1 + * Don't emit unsubscriptable-object if the node is found inside an abstract class. Closes issue #685. diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index cb6fc69ba..80055e0f4 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -23,11 +23,11 @@ from os.path import join modname = distname = 'pylint' -numversion = (1, 5, 0) +numversion = (1, 5, 1) version = '.'.join([str(num) for num in numversion]) install_requires = [ - 'astroid>=1.4.0', + 'astroid>=1.4.1', 'six', ] |