From ebfa2af1ca80cd7e0f23d92fca1a491b86605686 Mon Sep 17 00:00:00 2001 From: Jonathan L Long Date: Fri, 4 Mar 2016 12:53:49 -0800 Subject: [PATCH] [travis] force protobuf 3.0.0b2 for Python 3 This is temporary measure to avoid an apparent upstream issue with protobuf 3.0.0b2.post1. --- scripts/travis/travis_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/travis/travis_install.sh b/scripts/travis/travis_install.sh index d18dc22..ca8c410 100755 --- a/scripts/travis/travis_install.sh +++ b/scripts/travis/travis_install.sh @@ -93,7 +93,7 @@ if [ "$PYTHON_VERSION" -eq "3" ] && [ ! -e "$CONDA_DIR/bin/protoc" ]; then fi if [ "$PYTHON_VERSION" -eq "3" ]; then - pip install --pre protobuf + pip install --pre protobuf==3.0.0b2 else pip install protobuf fi -- 2.7.4