[travis] force protobuf 3.0.0b2 for Python 3
authorJonathan L Long <jonlong@cs.berkeley.edu>
Fri, 4 Mar 2016 20:53:49 +0000 (12:53 -0800)
committerJonathan L Long <jonlong@cs.berkeley.edu>
Fri, 4 Mar 2016 20:53:49 +0000 (12:53 -0800)
This is temporary measure to avoid an apparent upstream issue with
protobuf 3.0.0b2.post1.

scripts/travis/travis_install.sh

index d18dc22..ca8c410 100755 (executable)
@@ -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