diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | pylint/__pkginfo__.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ Pylint's ChangeLog What's New in Pylint 1.8.2? ========================== -Release data: |TBA| +Release data: 2018-01-23 * Fixed a crash which occurred when `Uninferable` wasn't properly handled in `stop-iteration-return` diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index a54ee05b3..324b3693b 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -31,7 +31,7 @@ numversion = (1, 8, 2) version = '.'.join([str(num) for num in numversion]) install_requires = [ - 'astroid<2.0', + 'astroid>=1.6,<2.0', 'six', 'isort >= 4.2.5', 'mccabe', |