Skip to content

Commit

Permalink
Update setup.py to require Django 1.9 as minimum
Browse files Browse the repository at this point in the history
  • Loading branch information
aarranz committed Jul 29, 2018
1 parent 350b24a commit 22d6c72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def run(self):
from django.core.management import call_command
except:
import pip
pip.main(['install', 'Django>=1.8,<1.12'])
pip.main(['install', 'Django>=1.9,<1.12'])

from django.core.management import call_command

Expand Down Expand Up @@ -169,7 +169,7 @@ def run(self):
},
include_package_data=True,
install_requires=(
'Django>=1.8,<1.12',
'Django>=1.9,<1.12',
'lxml>=2.3',
'django-appconf>=1.0.1,<2.0',
'django_compressor>=2.0,<3.0',
Expand Down

0 comments on commit 22d6c72

Please sign in to comment.