From b98188e826b3c86b84034529951de5206e885b21 Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Sun, 3 May 2015 08:37:46 +0200 Subject: [PATCH] Upgrading third_party/protobuf to version v3.0.0-alpha-1-150-g7d5cf8d. --- src/python/requirements.txt | 2 +- src/python/src/setup.py | 2 +- third_party/protobuf | 2 +- tools/dockerfile/grpc_python_base/Dockerfile | 2 +- tools/run_tests/build_python.sh | 2 +- tools/run_tests/run_sanity.sh | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/python/requirements.txt b/src/python/requirements.txt index 06a42e1c9fff5..d32d436d3c47a 100644 --- a/src/python/requirements.txt +++ b/src/python/requirements.txt @@ -1,3 +1,3 @@ enum34==1.0.4 futures==2.2.0 -protobuf==3.0.0-alpha-1 +protobuf==3.0.0a2 diff --git a/src/python/src/setup.py b/src/python/src/setup.py index a13dc4ec19da9..e936913cfd0f1 100644 --- a/src/python/src/setup.py +++ b/src/python/src/setup.py @@ -93,6 +93,6 @@ install_requires=[ 'enum34==1.0.4', 'futures==2.2.0', - 'protobuf==3.0.0-alpha-1' + 'protobuf==3.0.0a2' ] ) diff --git a/third_party/protobuf b/third_party/protobuf index 644a6a1da7138..7d5cf8d7a1bd2 160000 --- a/third_party/protobuf +++ b/third_party/protobuf @@ -1 +1 @@ -Subproject commit 644a6a1da71385e9d7a7a26b3476c93fdd71788c +Subproject commit 7d5cf8d7a1bd24acce56296747731051ebe1b180 diff --git a/tools/dockerfile/grpc_python_base/Dockerfile b/tools/dockerfile/grpc_python_base/Dockerfile index 0d45f4024297d..90a57bf34142b 100644 --- a/tools/dockerfile/grpc_python_base/Dockerfile +++ b/tools/dockerfile/grpc_python_base/Dockerfile @@ -43,7 +43,7 @@ RUN apt-get update && apt-get install -y \ python-virtualenv # Install Python packages from PyPI -RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.0.0-alpha-1 +RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.0.0a2 # Get the GRPC source from GitHub RUN git clone --recursive https://github.com/grpc/grpc.git /var/local/git/grpc diff --git a/tools/run_tests/build_python.sh b/tools/run_tests/build_python.sh index b14597804fe11..dc5baccf9f3cc 100755 --- a/tools/run_tests/build_python.sh +++ b/tools/run_tests/build_python.sh @@ -37,6 +37,6 @@ root=`pwd` rm -rf python2.7_virtual_environment virtualenv -p /usr/bin/python2.7 python2.7_virtual_environment source python2.7_virtual_environment/bin/activate -pip install enum34==1.0.4 futures==2.2.0 protobuf==3.0.0-alpha-1 +pip install enum34==1.0.4 futures==2.2.0 protobuf==3.0.0a2 CFLAGS=-I$root/include LDFLAGS=-L$root/libs/$CONFIG pip install src/python/src pip install src/python/interop diff --git a/tools/run_tests/run_sanity.sh b/tools/run_tests/run_sanity.sh index 959197eb3d948..aa241b03dd0cd 100755 --- a/tools/run_tests/run_sanity.sh +++ b/tools/run_tests/run_sanity.sh @@ -45,6 +45,6 @@ git submodule > $submodules diff -u $submodules - << EOF 05b155ff59114735ec8cd089f669c4c3d8f59029 third_party/gflags (v2.1.0-45-g05b155f) 3df69d3aefde7671053d4e3c242b228e5d79c83f third_party/openssl (OpenSSL_1_0_2a) - 644a6a1da71385e9d7a7a26b3476c93fdd71788c third_party/protobuf (v3.0.0-alpha-1-35-g644a6a1) + 7d5cf8d7a1bd24acce56296747731051ebe1b180 third_party/protobuf (v3.0.0-alpha-1-150-g7d5cf8d) 50893291621658f355bc5b4d450a8d06a563053d third_party/zlib (v1.2.8) EOF