aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/helper_scripts
diff options
context:
space:
mode:
authorGravatar Lidi Zheng <lidiz@google.com>2018-11-06 09:59:22 -0800
committerGravatar Lidi Zheng <lidiz@google.com>2018-11-06 15:37:51 -0800
commit8a0b08b574e968e02038004de9408c208e650fa1 (patch)
tree409cdd5266708fc204f1c786745d0387fd44d196 /tools/run_tests/helper_scripts
parentadef5373f88084d0381bbe87ec0d69e0361862b0 (diff)
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 6990244e51..bb7fd040ab 100755
--- a/tools/run_tests/helper_scripts/build_python.sh
+++ b/tools/run_tests/helper_scripts/build_python.sh
@@ -149,10 +149,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