From 4ca13bb1c80f87326506ecfcda33177bd7f97ffb Mon Sep 17 00:00:00 2001 From: "Francis T. O'Donovan" Date: Tue, 14 Nov 2017 14:46:32 -0500 Subject: [PATCH] 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+. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f943ab4..18b32a4 100644 --- a/setup.py +++ b/setup.py @@ -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, }, -) \ No newline at end of file +)