aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_health_checking
diff options
context:
space:
mode:
authorGravatar Ken Payson <kpayson@google.com>2016-08-18 11:27:47 -0700
committerGravatar Ken Payson <kpayson@google.com>2016-08-18 11:27:47 -0700
commit8348973de944e4c3e894da71377c12519956afc5 (patch)
treea25bb1a0b0cd66fc51a670ad2696dcc0426337fd /src/python/grpcio_health_checking
parent146e374d53819a07e96740c91275a5478cdd1815 (diff)
Use templates for python version dependencies
Also change grpcio-tools to be a runtime dependency of grpcio-tests, grpcio-tools is run as part of the tests.
Diffstat (limited to 'src/python/grpcio_health_checking')
-rw-r--r--src/python/grpcio_health_checking/setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/grpcio_health_checking/setup.py b/src/python/grpcio_health_checking/setup.py
index 6074175a44..8c92ee16a9 100644
--- a/src/python/grpcio_health_checking/setup.py
+++ b/src/python/grpcio_health_checking/setup.py
@@ -46,12 +46,12 @@ PACKAGE_DIRECTORIES = {
}
SETUP_REQUIRES = (
- 'grpcio-tools>=0.15.0',
+ 'grpcio-tools>={version}'.format(version=grpc_version.VERSION),
)
INSTALL_REQUIRES = (
'protobuf>=3.0.0',
- 'grpcio>=0.15.0',
+ 'grpcio>={version}'.format(version=grpc_version.VERSION),
)
COMMAND_CLASS = {