Further maintenance of Python dependencies

These changes probably should have been in 3b0fefb246 but
were overlooked.
pull/3323/head
Nathaniel Manista 9 years ago
parent 20f196af08
commit a1880228aa
  1. 4
      src/python/grpcio/requirements.txt
  2. 5
      src/python/grpcio/setup.py
  3. 2
      src/python/grpcio_test/setup.py

@ -1,2 +1,2 @@
enum34==1.0.4
futures==2.2.0
enum34>=1.0.4
futures>=2.2.0

@ -87,9 +87,8 @@ _PACKAGE_DIRECTORIES = {
}
_INSTALL_REQUIRES = (
'enum34==1.0.4',
'futures==2.2.0',
'protobuf==3.0.0a3',
'enum34>=1.0.4',
'futures>=2.2.0',
)
_SETUP_REQUIRES = (

@ -72,6 +72,8 @@ _SETUP_REQUIRES = (
_INSTALL_REQUIRES = (
'oauth2client>=1.4.7',
'grpcio>=0.11.0b0',
# TODO(issue 3321): Unpin protobuf dependency.
'protobuf==3.0.0a3',
)
_COMMAND_CLASS = {

Loading…
Cancel
Save