diff options
author | Matt Kwong <matt-kwong@users.noreply.github.com> | 2018-04-06 15:33:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-06 15:33:07 -0700 |
commit | 1617a64dc2f264cf0e6721e6d053607793453f04 (patch) | |
tree | ba264c2454e446fe93584dec5a638ee848a65928 | |
parent | cc4fe1b3cd5fea5c240e749e1f1f52f5aaab91a2 (diff) | |
parent | d7790efc8e56ab3b3142dd4147d685c10b81b7a5 (diff) |
Merge pull request #14956 from matt-kwong/hardcode-python
Unpin pip version installed in build_python.sh
-rwxr-xr-x | tools/run_tests/helper_scripts/build_python.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/run_tests/helper_scripts/build_python.sh b/tools/run_tests/helper_scripts/build_python.sh index dac29b91dd..e6d0fdf7e4 100755 --- a/tools/run_tests/helper_scripts/build_python.sh +++ b/tools/run_tests/helper_scripts/build_python.sh @@ -132,7 +132,7 @@ fi # Perform build operations # ############################ -# Instnatiate the virtualenv, preferring to do so from the relevant python +# Instantiate the virtualenv, preferring to do so from the relevant python # version. Even if these commands fail (e.g. on Windows due to name conflicts) # it's possible that the virtualenv is still usable and we trust the tester to # be able to 'figure it out' instead of us e.g. doing potentially expensive and @@ -158,7 +158,7 @@ case "$VENV" in ;; esac -$VENV_PYTHON -m pip install --upgrade pip==9.0.1 +$VENV_PYTHON -m pip install --upgrade pip $VENV_PYTHON -m pip install setuptools $VENV_PYTHON -m pip install cython $VENV_PYTHON -m pip install six enum34 protobuf futures |