Bumped version and updated requirements.

This commit is contained in:
Jorge C. Leitão 2017-03-01 12:06:33 +01:00
parent de7a59689d
commit f67036e5cd
3 changed files with 6 additions and 6 deletions

View file

@ -35,9 +35,9 @@ The `endswith` search operation is not supported by Xapian-Haystack.
Requirements
------------
- Python 2.7 or 3.3
- Python 2.7 or 3+
- Django 1.8+
- Django-Haystack 2
- Django-Haystack 2.5.1
- Xapian 1.2.19+
In particular, we build-test this backend in `Travis`_ using:

View file

@ -1,2 +1,2 @@
Django>=1.8
Django-Haystack>=2
Django-Haystack>=2.5.1

View file

@ -10,7 +10,7 @@ def read(fname):
setup(
name='xapian-haystack',
version='2.0.0',
version='2.1.0',
description='A Xapian backend for Haystack',
long_description=read('README.rst'),
classifiers=[
@ -23,11 +23,11 @@ setup(
author='Jorge C. Leitão',
author_email='jorgecarleitao@gmail.com',
url='http://github.com/notanumber/xapian-haystack',
download_url='http://github.com/notanumber/xapian-haystack/tarball/2.0.0',
download_url='http://github.com/notanumber/xapian-haystack/tarball/2.1.0',
license='GPL2',
py_modules=['xapian_backend'],
install_requires=[
'django>=1.8',
'django-haystack>=2',
'django-haystack>=2.5.1',
]
)