Skip to content

Commit

Permalink
Remove useless requirement on Python 3.2+
Browse files Browse the repository at this point in the history
  • Loading branch information
mgallet authored and cyberdelia committed Aug 1, 2015
1 parent c360a2a commit 213b630
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
import io

from setuptools import setup, find_packages
import sys

install_requires = []
if (sys.version_info[0], sys.version_info[1]) < (3, 2):
install_requires.append('futures>=2.1.3')

setup(
name='django-pipeline',
Expand All @@ -16,9 +20,7 @@
license='MIT',
packages=find_packages(exclude=['tests', 'tests.tests']),
zip_safe=False,
install_requires=[
'futures>=2.1.3',
],
install_requires=install_requires,
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
Expand Down

0 comments on commit 213b630

Please sign in to comment.