Blob Blame History Raw
From d661115b9245cbf377df339013d072d6745ac1b8 Mon Sep 17 00:00:00 2001
From: Stephen Gallagher <sgallagh@redhat.com>
Date: Wed, 18 Jul 2018 14:02:48 -0400
Subject: [PATCH] Fix package requires for older setuptools

Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 14dbd9c4f4c6071a49a538afb6a207b7b46789d8..273d2020397f0a3cfdb880a10265f54fbcddefa5 100644
--- a/setup.py
+++ b/setup.py
@@ -14,11 +14,11 @@ setup(
     author_email='timothee.peignier@tryphon.org',
     url='https://github.com/jazzband/django-pipeline',
     license='MIT',
     packages=find_packages(exclude=['tests', 'tests.tests']),
     zip_safe=False,
-    extras_require={ ':python_version<"3"': ['futures>=2.1.3'] },
+    install_requires=['futures>=2.1.3'],
     include_package_data=True,
     keywords=('django pipeline asset compiling concatenation compression'
               ' packaging'),
     classifiers=[
         'Development Status :: 5 - Production/Stable',
-- 
2.17.1