diff options
author | Nathaniel Manista <nathaniel@google.com> | 2016-01-04 19:12:29 +0000 |
---|---|---|
committer | Nathaniel Manista <nathaniel@google.com> | 2016-01-04 19:17:09 +0000 |
commit | 27f62432f56c808d7c83ffaaa529a2ad1b1c2140 (patch) | |
tree | 3b6115c8a918182bb6c3a2c825cc739b40cb2268 /src/python | |
parent | a9686f643353a74c299461d700ef036d857ab72d (diff) |
Remove ceiling on required protobuf version
This is possible now that https://github.com/google/protobuf/issues/855
is fixed (or at least appears to be fixed).
Diffstat (limited to 'src/python')
-rw-r--r-- | src/python/grpcio/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio/setup.py b/src/python/grpcio/setup.py index b8a98c3d85..366ebe3b3f 100644 --- a/src/python/grpcio/setup.py +++ b/src/python/grpcio/setup.py @@ -146,7 +146,7 @@ TEST_PACKAGE_DATA = { TESTS_REQUIRE = ( 'oauth2client>=1.4.7', - 'protobuf==3.0.0a3', + 'protobuf>=3.0.0a3', 'coverage>=4.0', ) + INSTALL_REQUIRES |