diff options
author | Bryce Guinta <bryce.paul.guinta@gmail.com> | 2018-03-30 22:35:45 -0600 |
---|---|---|
committer | Bryce Guinta <bryce.paul.guinta@gmail.com> | 2018-03-30 22:36:13 -0600 |
commit | 045c05ef904e48124700958f214a0287ceb8e6ef (patch) | |
tree | f60bbc86551d5cf7d335ec95e40c6899511f968c | |
parent | 3192f78654355df102d5eee0655a6b1fe869ec75 (diff) | |
download | astroid-git-045c05ef904e48124700958f214a0287ceb8e6ef.tar.gz |
Fix build errors for Python3.4 by requiring typing backports
The typing module is not available on Python3.4
-rw-r--r-- | astroid/__pkginfo__.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py index 55550684..db181735 100644 --- a/astroid/__pkginfo__.py +++ b/astroid/__pkginfo__.py @@ -15,7 +15,12 @@ version = '2.0.0' numversion = tuple(map(int, version.split('.'))) extras_require = {} -install_requires = ['lazy_object_proxy', 'six', 'wrapt'] +install_requires = [ + 'lazy_object_proxy', + 'six', + 'wrapt', + 'typing;python_version<"3.5"' +] # pylint: disable=redefined-builtin; why license is a builtin anyway? license = 'LGPL' |