diff options
-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 = [ |