Skip to content

Commit

Permalink
Looks like py3.3 doesn't like conditions in version in install_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyria authored May 15, 2018
1 parent cefe91d commit bc0fc89
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"pyswagger >= 0.8.31",
"six",
"pytz",
'futures; python_version == "2.7"',
]

# test requirements
Expand Down Expand Up @@ -38,6 +37,9 @@
description='Swagger Client for the ESI API for EVE Online',
long_description=readme,
install_requires=install_requirements,
extras_require={
':python_version == "2.7"': ['futures']
},
tests_require=test_requirements,
test_suite='nose.collector',
classifiers=[
Expand Down

0 comments on commit bc0fc89

Please sign in to comment.