summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorEric Lin <anselor@gmail.com>2018-04-16 22:27:02 -0400
committerEric Lin <anselor@gmail.com>2018-04-16 22:27:02 -0400
commitcd60899b13057f769686e9bf0df555955436592c (patch)
tree08a9e03d626790a0235d1f90677c94b9e754d9d0 /setup.py
parent50c96bcf29c5bdc7f25680526349e0b08b20dbf0 (diff)
downloadcmd2-git-cd60899b13057f769686e9bf0df555955436592c.tar.gz
Try adding typing for Python 3.4
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 88e4cf7d..8d3f9a8a 100755
--- a/setup.py
+++ b/setup.py
@@ -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: