diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2016-08-20 01:45:32 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2016-08-20 01:45:32 +0200 |
commit | e3e17d3f6bf3ecb402486553cd1a7f99e6c9ecc2 (patch) | |
tree | 4a4a3dccbac6248c87a3c7468aaeb19186911b40 /src/python/grpcio_health_checking | |
parent | 6cfc80edaf8ec1e46c9cbbc1f402a0a8a8259f16 (diff) | |
parent | bbc20b59f8650950cfe6dbf42c1eb0fe12945ca4 (diff) |
Merge branch 'v1.0.x' of https://github.com/grpc/grpc
Diffstat (limited to 'src/python/grpcio_health_checking')
-rw-r--r-- | src/python/grpcio_health_checking/setup.py | 4 |
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 = { |