summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2019-04-09 15:21:19 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2019-04-09 15:21:19 +0200
commitaf8fe7a4657be65e8087e9e4a68e6390d8ea38f3 (patch)
tree6478cd7fb6d482c829af23ce9de9a18d51a20719
parent0308876dcfcf0a5dca2dd6fd6aad13c6627df073 (diff)
downloadastroid-git-af8fe7a4657be65e8087e9e4a68e6390d8ea38f3.tar.gz
Prepare 1.6.6astroid-1.6.6
-rw-r--r--ChangeLog17
-rw-r--r--astroid/__pkginfo__.py2
2 files changed, 18 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 49ffdae4..1834dcdf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,23 @@
Change log for the astroid package (used to be astng)
=====================================================
+2019-04-09 -- 1.6.6
+
+* Add cPickle to the list of available imports for six.moves in Python2
+
+* make is_standard_module() properly classify extensions (#659) (#661)
+
+ Extensions can be installed in either a platform independent or specific
+ location[1]. The search is updated to include both paths. Previously, an
+ extension in the platform specific location would be misclassified because
+ only the independent location was considered and the platform specific location
+ shared a prefix with the standard lib.
+
+ [1] http://docs.python.org/3/distutils/apiref.html#distutils.sysconfig.get_python_lib
+
+ Fixes Issue: #658
+ Co-authored-by: Matt Story <s.matt.story@gmail.com>
+
2018-06-06 -- 1.6.5
* Don't propagate Uninferable objects when inferring BinOps
diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py
index ffd61457..eb45ccc9 100644
--- a/astroid/__pkginfo__.py
+++ b/astroid/__pkginfo__.py
@@ -16,7 +16,7 @@ distname = 'astroid'
modname = 'astroid'
-version = '1.6.5'
+version = '1.6.6'
numversion = tuple(map(int, version.split('.')))
extras_require = {}