Skip to content
This repository has been archived by the owner on Apr 15, 2022. It is now read-only.

Commit

Permalink
Additional requirements missing in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaoming committed May 26, 2017
1 parent a21cb78 commit 9637b3b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,16 @@ def enable_log_to_stdout(logname):
log.addHandler(ch)


INSTALL_REQUIRES = [
'six',
'enum34>=1.1,<2',
]

PYTHON_2_BACKPORTS = [
"futures>=3.1.1",
]

INSTALL_REQUIRES = PYTHON_2_BACKPORTS if IS_PYTHON_2 else []
INSTALL_REQUIRES += PYTHON_2_BACKPORTS if IS_PYTHON_2 else []

setup(
name=dist_name,
Expand Down

0 comments on commit 9637b3b

Please sign in to comment.