Skip to content

Commit

Permalink
Update install_requires in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshiew committed Dec 7, 2016
1 parent 621b164 commit 5e1e3d6
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,16 @@ def visit_Assign(self, node):
history = open('HISTORY.rst').read().replace('.. :changelog:', '')

INSTALL_REQUIRES = [
'django!=1.9,>=1.8',
'django-braces>=1.8.1',
'django-model-utils>=2.3.1',
'django-polymorphic>=0.7.1',
'django!=1.9,>=1.8', # Django has a regression in 1.9, see #275
'django-braces>=1.9.0',
'django-model-utils>=2.5.2',
'django-polymorphic>=1.0',
'jsonfield>=1.0.3',
'pytz>=2015.4',
'stripe>=1.24.1',
'tqdm>=4.5.0',
'pytz>=2016.6.1',
'stripe>=1.41.1',
'tqdm>=4.8.4',
'python-doc-inherit~=0.3.0',
'mock-django~=0.6.10',
]

setup(
Expand Down

0 comments on commit 5e1e3d6

Please sign in to comment.