File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,9 @@ Haystack has a relatively easily-met set of requirements.
48
48
* Python 2.6+ or Python 3.3+
49
49
* Django 1.5+
50
50
51
+ .. warning ::
52
+ Django 1.7 is currently unsupported until the release of v2.3. See https://github.com/toastdriven/django-haystack/issues/1067
53
+
51
54
Additionally, each backend has its own requirements. You should refer to
52
55
http://django-haystack.readthedocs.org/en/latest/installing_search_engines.html for more
53
56
details.
Original file line number Diff line number Diff line change 8
8
from setuptools import setup
9
9
10
10
install_requires = [
11
- 'Django' ,
11
+ 'Django<1.7 ' ,
12
12
]
13
13
14
14
tests_require = [
27
27
28
28
setup (
29
29
name = 'django-haystack' ,
30
- version = '2.2.0 ' ,
30
+ version = '2.2.1 ' ,
31
31
description = 'Pluggable search for Django.' ,
32
32
author = 'Daniel Lindsley' ,
33
33
You can’t perform that action at this time.
0 commit comments