Skip to content
Snippets Groups Projects
Commit 34e91944 authored by Ken Payson's avatar Ken Payson
Browse files

Make enum34 only required for Python 2.7

parent 0093d668
No related branches found
No related tags found
No related merge requests found
...@@ -206,14 +206,13 @@ PACKAGE_DIRECTORIES = { ...@@ -206,14 +206,13 @@ PACKAGE_DIRECTORIES = {
INSTALL_REQUIRES = ( INSTALL_REQUIRES = (
'six>=1.5.2', 'six>=1.5.2',
'enum34>=1.0.4',
# TODO(atash): eventually split the grpcio package into a metapackage # TODO(atash): eventually split the grpcio package into a metapackage
# depending on protobuf and the runtime component (independent of protobuf) # depending on protobuf and the runtime component (independent of protobuf)
'protobuf>=3.0.0', 'protobuf>=3.0.0',
) )
if not PY3: if not PY3:
INSTALL_REQUIRES += ('futures>=2.2.0',) INSTALL_REQUIRES += ('futures>=2.2.0', 'enum34>=1.0.4')
SETUP_REQUIRES = INSTALL_REQUIRES + ( SETUP_REQUIRES = INSTALL_REQUIRES + (
'sphinx>=1.3', 'sphinx>=1.3',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment