aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Nathaniel Manista <nathaniel@google.com>2016-01-22 11:56:18 -0800
committerGravatar Nathaniel Manista <nathaniel@google.com>2016-01-22 11:56:18 -0800
commite64e5e4c1c3e4f15fc611340321384c8cc4a04f9 (patch)
treee7e189f6c09c1c3d26fcd5f56a576624c2b2659c
parentac9e1cbe3ddd567eae4db48a17a4c72dae4ed2c1 (diff)
parentad32ff4e615b1c05d95b086e3092473177256f16 (diff)
Merge pull request #4823 from soltanmm/protostuffs
Depend on protobuf>=3.0.0a3 in grpcio.
-rw-r--r--setup.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 043cd1fed4..63b56f3532 100644
--- a/setup.py
+++ b/setup.py
@@ -120,6 +120,9 @@ PACKAGE_DIRECTORIES = {
INSTALL_REQUIRES = (
'enum34>=1.0.4',
'futures>=2.2.0',
+ # TODO(atash): eventually split the grpcio package into a metapackage
+ # depending on protobuf and the runtime component (independent of protobuf)
+ 'protobuf>=3.0.0a3',
)
SETUP_REQUIRES = (