Skip to content
This repository has been archived by the owner on Oct 22, 2019. It is now read-only.

Commit

Permalink
requirements: add version specifier to django-guardian
Browse files Browse the repository at this point in the history
django-guardian drops support for django==1.4 so this specifier is
required to ensure django-userena works with django==1.4.
Note that django guardian 2.0 will drop support for this release
of django.
  • Loading branch information
swistakm committed Dec 30, 2015
1 parent d0b39a0 commit 0360912
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@
"``long_description`` (%s)\n" % readme_file)
sys.exit(1)

install_requires = ['easy_thumbnails', 'django-guardian', 'html2text==2014.12.29']
install_requires = [
'easy_thumbnails',
'django-guardian<=1.3.1',
'html2text==2014.12.29'
]

try:
from collections import OrderedDict
except ImportError:
Expand Down

0 comments on commit 0360912

Please sign in to comment.