diff options
author | Ken Payson <kpayson@google.com> | 2016-06-28 17:20:37 -0700 |
---|---|---|
committer | Ken Payson <kpayson@google.com> | 2016-06-28 17:20:37 -0700 |
commit | 2b7fae0432575931f99e5774b3495b77d2537732 (patch) | |
tree | 27861b63f2ae6d651dffdac79909a76a8fdd7d89 | |
parent | 3db76b92b92c5cb0d79fbf81e2526602357a6b84 (diff) |
Lowered six dependency version to 1.5.2
-rw-r--r-- | setup.py | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -167,7 +167,7 @@ PACKAGE_DIRECTORIES = { } INSTALL_REQUIRES = ( - 'six>=1.10', + 'six>=1.5.2', 'enum34>=1.0.4', 'futures>=2.2.0', # TODO(atash): eventually split the grpcio package into a metapackage @@ -175,10 +175,11 @@ INSTALL_REQUIRES = ( 'protobuf>=3.0.0a3', ) -SETUP_REQUIRES = ( +SETUP_REQUIRES = INSTALL_REQUIRES + ( 'sphinx>=1.3', - 'sphinx_rtd_theme>=0.1.8' -) + INSTALL_REQUIRES + 'sphinx_rtd_theme>=0.1.8', + 'six>=1.10', +) COMMAND_CLASS = { 'doc': commands.SphinxDocumentation, |