Skip to content

Commit e3ed2d2

Browse files
committed
Mark 2.2.X as incompatible with Django 1.7
1 parent 6b67401 commit e3ed2d2

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ Haystack has a relatively easily-met set of requirements.
4848
* Python 2.6+ or Python 3.3+
4949
* Django 1.5+
5050

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+
5154
Additionally, each backend has its own requirements. You should refer to
5255
http://django-haystack.readthedocs.org/en/latest/installing_search_engines.html for more
5356
details.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from setuptools import setup
99

1010
install_requires = [
11-
'Django',
11+
'Django<1.7',
1212
]
1313

1414
tests_require = [
@@ -27,7 +27,7 @@
2727

2828
setup(
2929
name='django-haystack',
30-
version='2.2.0',
30+
version='2.2.1',
3131
description='Pluggable search for Django.',
3232
author='Daniel Lindsley',
3333
author_email='[email protected]',

0 commit comments

Comments
 (0)