Skip to content

Commit 0fafddf

Browse files
nehaljwaniyurishkuro
authored andcommitted
Add environment marker for dependency: 'futures' (#41)
'futures' is a Python 2 package only. Fixes #32
1 parent fa35a88 commit 0fafddf

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ check-virtualenv:
3030
bootstrap: check-virtualenv install-deps
3131

3232
install-deps:
33+
pip install 'setuptools>=20.8.1'
3334
pip install -r requirements.txt
3435
pip install -r requirements-test.txt
3536
python setup.py develop

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
platforms='any',
2525
install_requires=[
2626
'future',
27-
'futures',
27+
'futures;python_version<"3"',
2828
'wrapt',
2929
'tornado>=4.1',
3030
'contextlib2',

0 commit comments

Comments
 (0)