Only install futures for python < 3.2

`futures` is a backport of the `concurrent.futures` package from
Python 3.2, and so should not be installed for Python 3.2+.
This commit is contained in:
Francis T. O'Donovan
2017-11-14 14:46:32 -05:00
parent 0cb39fbfc8
commit 4ca13bb1c8
+2 -2
View File
@@ -21,7 +21,7 @@ VERSION = '0.1.1'
# What packages are required for this module to be executed?
REQUIRED = [
'futures'
"futures; python_version<'3.2'"
# 'requests', 'maya', 'records',
]
@@ -107,4 +107,4 @@ setup(
cmdclass={
'publish': PublishCommand,
},
)
)