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

Commit 0360912

Browse files
committed
requirements: add version specifier to django-guardian
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.
1 parent d0b39a0 commit 0360912

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@
1111
"``long_description`` (%s)\n" % readme_file)
1212
sys.exit(1)
1313

14-
install_requires = ['easy_thumbnails', 'django-guardian', 'html2text==2014.12.29']
14+
install_requires = [
15+
'easy_thumbnails',
16+
'django-guardian<=1.3.1',
17+
'html2text==2014.12.29'
18+
]
19+
1520
try:
1621
from collections import OrderedDict
1722
except ImportError:

0 commit comments

Comments
 (0)