aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/helper_scripts
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2018-05-16 19:52:53 -0700
committerGravatar GitHub <noreply@github.com>2018-05-16 19:52:53 -0700
commitce0faaf3235273d27495e0f77ae313bb7ce1ff03 (patch)
treebc630031421445c780afc1fc9be7aaccab04aa62 /tools/run_tests/helper_scripts
parent3001499c0f68efd1dc0d3ed02bbb1845a1eb7fba (diff)
parenta9508cf24bfd364aa7295cbb922a9d7287aeb87e (diff)
Merge pull request #15412 from kpayson64/fix_gevent_tests
Pin gevent
Diffstat (limited to 'tools/run_tests/helper_scripts')
-rwxr-xr-xtools/run_tests/helper_scripts/build_python.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/run_tests/helper_scripts/build_python.sh b/tools/run_tests/helper_scripts/build_python.sh
index a88a7d4d64..6990244e51 100755
--- a/tools/run_tests/helper_scripts/build_python.sh
+++ b/tools/run_tests/helper_scripts/build_python.sh
@@ -150,7 +150,8 @@ pip_install_dir() {
case "$VENV" in
*gevent*)
- $VENV_PYTHON -m pip install gevent
+ # TODO(https://github.com/grpc/grpc/issues/15411) unpin this
+ $VENV_PYTHON -m pip install gevent==1.3.b1
;;
esac