From f67036e5cdaf2f88c19ab344b1a75788faac1dc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20C=2E=20Leit=C3=A3o?= Date: Wed, 1 Mar 2017 12:06:33 +0100 Subject: [PATCH] Bumped version and updated requirements. --- README.rst | 4 ++-- requirements.txt | 2 +- setup.py | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index 6c112db..3e82fb5 100644 --- a/README.rst +++ b/README.rst @@ -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: diff --git a/requirements.txt b/requirements.txt index 869614e..f14b48e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ Django>=1.8 -Django-Haystack>=2 +Django-Haystack>=2.5.1 diff --git a/setup.py b/setup.py index 6237f2e..517b445 100644 --- a/setup.py +++ b/setup.py @@ -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', ] )