diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2018-05-21 11:32:01 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-05-21 11:32:01 +0200 |
commit | 85dce2f8830d70442b55dcb5ca3198fbafec9b50 (patch) | |
tree | 19fdb43b0dc18a6bd681f7b78018f916dad6f85e | |
parent | 1aae38159060609f751ac7d64757f94c4ca49722 (diff) | |
download | astroid-git-85dce2f8830d70442b55dcb5ca3198fbafec9b50.tar.gz |
Prepare 2.0-devastroid-2.0.0-dev
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | astroid/__pkginfo__.py | 4 |
2 files changed, 5 insertions, 5 deletions
@@ -1,7 +1,7 @@ Change log for the astroid package (used to be astng) ===================================================== --- +-- 2.0 * typing.X[...] and typing.NewType are inferred as classes instead of instances. @@ -28,7 +28,7 @@ Change log for the astroid package (used to be astng) * Fix missing __module__ and __qualname__ from class definition locals - Close PYCQA/pylint#1753 + Close PYCQA/pylint#1753 * Fix a crash when __annotations__ access a parent's __init__ that does not have arguments @@ -58,7 +58,7 @@ Change log for the astroid package (used to be astng) * Add missing attrs special attribute - Close PyCQA/pylint#1884 + Close PyCQA/pylint#1884 * Inference now understands the 'isinstance' builtin diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py index db181735..c873f595 100644 --- a/astroid/__pkginfo__.py +++ b/astroid/__pkginfo__.py @@ -11,8 +11,8 @@ distname = 'astroid' modname = 'astroid' -version = '2.0.0' -numversion = tuple(map(int, version.split('.'))) +version = '2.0.0.dev' +numversion = tuple(int(elem) for elem in version.split('.') if elem.isdigit()) extras_require = {} install_requires = [ |