diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2018-04-05 08:52:37 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-04-05 08:52:37 +0200 |
commit | 819bd049aa166f19be6af7c53dfc0e783d545e16 (patch) | |
tree | 0ddd33ac2816f9e8cf03df12a61cdda44d84ccf3 | |
parent | e38f8abf294834c1512b1e30a21895a59e88c9ad (diff) | |
download | astroid-git-astroid-1.6.3.tar.gz |
Prepare 1.6.3astroid-1.6.3
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | astroid/__pkginfo__.py | 2 |
2 files changed, 13 insertions, 1 deletions
@@ -1,6 +1,18 @@ Change log for the astroid package (used to be astng) ===================================================== +2018-04-05 -- 1.6.3 + + * Fixes nested namespace package import for old-style namespace packages + + * Use .path for inferring a module's __path__ attribute. Close #528 + + * Improve the six urllib functions for Python 2 by setting them as instance attributes + + Because they were at the class level, we were considering them BoundMethods, resulting + in a too-many-function-args error when calling these functions. + Close PyCQA/pylint#1965 + 2018-03-16 -- 1.6.2 * Fix submodule imports from six diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py index c2e1798d..7d2f732c 100644 --- a/astroid/__pkginfo__.py +++ b/astroid/__pkginfo__.py @@ -16,7 +16,7 @@ distname = 'astroid' modname = 'astroid' -version = '1.6.2' +version = '1.6.3' numversion = tuple(map(int, version.split('.'))) extras_require = {} |