mirror of
https://github.com/zulip/zulip.git
synced 2025-11-22 15:31:20 +00:00
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.
8 lines
172 B
Bash
Executable File
8 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
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
|