Add dependencies to setup-py3k.

Add 'six' to setup-py3k, because it is being used in tools/lister.py.
Add 'typing' to setup-py3k, so that tools/lister.py can be type
annotated in the future.
This commit is contained in:
Eklavya Sharma 2016-05-01 10:47:04 +05:30
parent 2d3f9c8fb9
commit 247cdf578b
1 changed files with 2 additions and 0 deletions

View File

@ -3,3 +3,5 @@ set -e
set -x
pip install --no-deps future==0.15.2
pip install --no-deps modernize==0.5
pip install --no-deps six==1.10.0
pip install --no-deps typing==3.5.0.1