diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | astroid/__pkginfo__.py | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -5,7 +5,7 @@ astroid's ChangeLog What's New in astroid 2.0? ========================== -Release Date: Unknown +Release Date: 2018-07-15 * String representation of nodes takes in account precedence and associativity rules of operators. diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py index a95a8a0c..29cfdbb6 100644 --- a/astroid/__pkginfo__.py +++ b/astroid/__pkginfo__.py @@ -11,7 +11,7 @@ distname = 'astroid' modname = 'astroid' -version = '2.0.0.dev4' +version = '2.0' numversion = tuple(int(elem) for elem in version.split('.') if elem.isdigit()) extras_require = {} @@ -41,6 +41,7 @@ classifiers = ["Topic :: Software Development :: Libraries :: Python Modules", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ] |