diff options
| author | Eric Lin <anselor@gmail.com> | 2018-04-16 22:27:02 -0400 |
|---|---|---|
| committer | Eric Lin <anselor@gmail.com> | 2018-04-16 22:27:02 -0400 |
| commit | cd60899b13057f769686e9bf0df555955436592c (patch) | |
| tree | 08a9e03d626790a0235d1f90677c94b9e754d9d0 /setup.py | |
| parent | 50c96bcf29c5bdc7f25680526349e0b08b20dbf0 (diff) | |
| download | cmd2-git-cd60899b13057f769686e9bf0df555955436592c.tar.gz | |
Try adding typing for Python 3.4
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -69,7 +69,7 @@ EXTRAS_REQUIRE = { # POSIX OSes also require wcwidth for correctly estimating the displayed width of unicode chars ":sys_platform!='win32'": ['wcwidth'], # Python 3.4 and earlier require contextlib2 for temporarily redirecting stderr and stdout - ":python_version<'3.5'": ['contextlib2'], + ":python_version<'3.5'": ['contextlib2', 'typing'], } if int(setuptools.__version__.split('.')[0]) < 18: |
