Django-haystack 2.6.1 与 Django 2.0 兼容吗?
Is Django-haystack 2.6.1 compatible with Django 2.0?
我的问题很简单(根据标题)。当前的 Django-haystack 是否与最新的 Django 2.0 兼容?有人在用这个组合吗?
文档和 PYPI 中的要求表明它是:
- https://django-haystack.readthedocs.io/en/master/#requirements
- https://pypi.python.org/pypi/django-haystack/2.6.1
但是以下用户在尝试将它与 Django 2.0 一起使用时遇到了和我一样的问题:
- Django 2.0 haystack whoosh update index, rebuild index throw error
相同的设置适用于 Django 1.11。
谢谢!
Haystack 2.6.1 不支持 Django 2.0。 README said a supported version of Django but did not explicitly specify the supported versions. If you look at the setup.py
、install_requires
包含 'Django>=1.8,<1.12'.
Support for Django 2.0 已添加到 2018 年 3 月发布的 Haystack 2.8 中。
我的问题很简单(根据标题)。当前的 Django-haystack 是否与最新的 Django 2.0 兼容?有人在用这个组合吗?
文档和 PYPI 中的要求表明它是:
- https://django-haystack.readthedocs.io/en/master/#requirements
- https://pypi.python.org/pypi/django-haystack/2.6.1
但是以下用户在尝试将它与 Django 2.0 一起使用时遇到了和我一样的问题:
- Django 2.0 haystack whoosh update index, rebuild index throw error
相同的设置适用于 Django 1.11。
谢谢!
Haystack 2.6.1 不支持 Django 2.0。 README said a supported version of Django but did not explicitly specify the supported versions. If you look at the setup.py
、install_requires
包含 'Django>=1.8,<1.12'.
Support for Django 2.0 已添加到 2018 年 3 月发布的 Haystack 2.8 中。