Skip to content

Commit

Permalink
Bump python protobuf dependency to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kpayson64 committed Aug 3, 2016
1 parent b507780 commit e5fd01a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ coverage>=4.0
cython>=0.23
enum34>=1.0.4
futures>=2.2.0
protobuf>=3.0.0a3
protobuf>=3.0.0
six>=1.10
wheel>=0.29
wheel>=0.29
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def cython_extensions(module_names, extra_sources, include_dirs,
'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',
'protobuf>=3.0.0',
)

SETUP_REQUIRES = INSTALL_REQUIRES + (
Expand Down
1 change: 1 addition & 0 deletions src/python/grpcio_health_checking/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
)

INSTALL_REQUIRES = (
'protobuf>=3.0.0',
'grpcio>=0.15.0',
)

Expand Down
2 changes: 1 addition & 1 deletion src/python/grpcio_tests/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
'grpcio>=0.14.0',
'grpcio-health-checking>=0.14.0',
'oauth2client>=1.4.7',
'protobuf>=3.0.0a3',
'protobuf>=3.0.0',
'six>=1.10',
)

Expand Down
2 changes: 1 addition & 1 deletion tools/distrib/python/grpcio_tools/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def maybe_cythonize(exts):
packages=setuptools.find_packages('.'),
namespace_packages=['grpc'],
install_requires=[
'protobuf>=3.0.0a3',
'protobuf>=3.0.0',
'grpcio>=0.15.0',
],
package_data=package_data(),
Expand Down

0 comments on commit e5fd01a

Please sign in to comment.