summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2018-05-21 11:32:01 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2018-05-21 11:32:01 +0200
commit85dce2f8830d70442b55dcb5ca3198fbafec9b50 (patch)
tree19fdb43b0dc18a6bd681f7b78018f916dad6f85e
parent1aae38159060609f751ac7d64757f94c4ca49722 (diff)
downloadastroid-git-85dce2f8830d70442b55dcb5ca3198fbafec9b50.tar.gz
Prepare 2.0-devastroid-2.0.0-dev
-rw-r--r--ChangeLog6
-rw-r--r--astroid/__pkginfo__.py4
2 files changed, 5 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 8cb9852a..0c7bf8ca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 = [