summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2018-07-15 10:09:36 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2018-07-15 10:09:36 +0200
commitd2091f9255bf0bbe9d336d90a1df21065c05e8c2 (patch)
treeb8e7737bf1714a704b9df280cfe30848549857b7
parent311a573f66995c5bacd44a2411a2132355988ba5 (diff)
downloadpylint-git-d2091f9255bf0bbe9d336d90a1df21065c05e8c2.tar.gz
Prepare the release
-rw-r--r--ChangeLog2
-rw-r--r--pylint/__pkginfo__.py3
2 files changed, 2 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index f70654b25..bc0e6f4d6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,7 +5,7 @@ Pylint's ChangeLog
What's New in Pylint 2.0?
=========================
-Release date: |TBA|
+Release date: 2018-07-15
* `trailing-comma-tuple` can be emitted for `return` statements as well.
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 1db732468..51cf5f382 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -27,13 +27,12 @@ numversion = (2, 0, 0)
version = '.'.join(str(num) for num in numversion) + '.dev2'
install_requires = [
- 'astroid>=2.0.0.dev3',
+ 'astroid>=2.0.0',
'isort >= 4.2.5',
'mccabe',
]
dependency_links = [
- 'https://github.com/PyCQA/astroid/tarball/master#egg=astroid-2.0'
]
extras_require = {}