diff options
author | kpayson64 <kpayson@google.com> | 2016-08-02 12:46:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-02 12:46:09 -0700 |
commit | 9fa684fa0d0527b9a9271681940d8f99b9c2787c (patch) | |
tree | 6e7a6ab13cf5e66b1223f505c791cfb8c5e8a245 /tools/run_tests | |
parent | baa8c31984ab822fee6bd8ff1cf897d746decd29 (diff) | |
parent | f32e71eaca170d182f104b83c761ea22b6783d61 (diff) |
Merge pull request #7610 from kpayson64/downgrade_setuptools
Downgrade docker setuptools
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/build_python.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/run_tests/build_python.sh b/tools/run_tests/build_python.sh index 13d745d14f..83e456d3ed 100755 --- a/tools/run_tests/build_python.sh +++ b/tools/run_tests/build_python.sh @@ -168,7 +168,9 @@ pip_install_dir() { cd $PWD } -$VENV_PYTHON -m pip install --upgrade pip setuptools +$VENV_PYTHON -m pip install --upgrade pip +# TODO(https://github.com/pypa/setuptools/issues/709) get the latest setuptools +$VENV_PYTHON -m pip install setuptools==25.1.1 $VENV_PYTHON -m pip install cython pip_install_dir $ROOT $VENV_PYTHON $ROOT/tools/distrib/python/make_grpcio_tools.py |