aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/helper_scripts
diff options
context:
space:
mode:
authorGravatar Lidi Zheng <scallopsky@gmail.com>2018-11-07 11:11:02 -0800
committerGravatar GitHub <noreply@github.com>2018-11-07 11:11:02 -0800
commit01c6565fb5a9631f6f1dd4f81662af711cab30aa (patch)
treeb70265833bd7b5df3f4bf1ae4fd6a3edbc41d0c3 /tools/run_tests/helper_scripts
parent678ea0895051646c80e59bc7ca6fe16d942e073d (diff)
parent8a0b08b574e968e02038004de9408c208e650fa1 (diff)
Merge pull request #16995 from lidizheng/from-3.4-to-3.7
Migrate tests from Python 3.4 to Python 3.7
Diffstat (limited to 'tools/run_tests/helper_scripts')
-rwxr-xr-xtools/run_tests/helper_scripts/build_python.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/run_tests/helper_scripts/build_python.sh b/tools/run_tests/helper_scripts/build_python.sh
index eb3ea9e1f5..4c94c4c6d2 100755
--- a/tools/run_tests/helper_scripts/build_python.sh
+++ b/tools/run_tests/helper_scripts/build_python.sh
@@ -155,10 +155,13 @@ pip_install_dir() {
}
case "$VENV" in
- *gevent*)
+ *py35_gevent*)
# TODO(https://github.com/grpc/grpc/issues/15411) unpin this
$VENV_PYTHON -m pip install gevent==1.3.b1
;;
+ *gevent*)
+ $VENV_PYTHON -m pip install -U gevent
+ ;;
esac
$VENV_PYTHON -m pip install --upgrade pip==10.0.1