diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2019-06-01 11:53:54 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2019-06-01 11:53:54 +0200 |
commit | 0ab8caa4882490730593853c94c640cc5980f28c (patch) | |
tree | 9693008943400e16516879b12ff1f971a9c4882b | |
parent | 118c9caf1f0dee8785a815bec203ee8e97ef75b0 (diff) | |
download | astroid-git-0ab8caa4882490730593853c94c640cc5980f28c.tar.gz |
typed_ast does not support Python 3.8 yet
-rw-r--r-- | astroid/__pkginfo__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py index 55e89629..d3cb4705 100644 --- a/astroid/__pkginfo__.py +++ b/astroid/__pkginfo__.py @@ -26,7 +26,7 @@ install_requires = [ "six", "wrapt", 'typing;python_version<"3.5"', - 'typed-ast>=1.3.0;implementation_name== "cpython"', + 'typed-ast>=1.3.0;implementation_name== "cpython" and python_version<"3.8"', ] # pylint: disable=redefined-builtin; why license is a builtin anyway? |