92809ad
From d661115b9245cbf377df339013d072d6745ac1b8 Mon Sep 17 00:00:00 2001
92809ad
From: Stephen Gallagher <sgallagh@redhat.com>
92809ad
Date: Wed, 18 Jul 2018 14:02:48 -0400
92809ad
Subject: [PATCH] Fix package requires for older setuptools
92809ad
92809ad
Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
92809ad
---
92809ad
 setup.py | 2 +-
92809ad
 1 file changed, 1 insertion(+), 1 deletion(-)
92809ad
92809ad
diff --git a/setup.py b/setup.py
92809ad
index 14dbd9c4f4c6071a49a538afb6a207b7b46789d8..273d2020397f0a3cfdb880a10265f54fbcddefa5 100644
92809ad
--- a/setup.py
92809ad
+++ b/setup.py
92809ad
@@ -14,11 +14,11 @@ setup(
92809ad
     author_email='timothee.peignier@tryphon.org',
92809ad
     url='https://github.com/jazzband/django-pipeline',
92809ad
     license='MIT',
92809ad
     packages=find_packages(exclude=['tests', 'tests.tests']),
92809ad
     zip_safe=False,
92809ad
-    extras_require={ ':python_version<"3"': ['futures>=2.1.3'] },
92809ad
+    install_requires=['futures>=2.1.3'],
92809ad
     include_package_data=True,
92809ad
     keywords=('django pipeline asset compiling concatenation compression'
92809ad
               ' packaging'),
92809ad
     classifiers=[
92809ad
         'Development Status :: 5 - Production/Stable',
92809ad
-- 
92809ad
2.17.1
92809ad