Skip to content

Commit af77e5f

Browse files
committed
Update elasticsearch-dsl min version
Fix #82
1 parent db87a14 commit af77e5f

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
History
44
-------
55

6+
0.4.5 (XXXX-XX-XX)
7+
~~~~~~~~~~~~~~~~~~
8+
Update elasticsearch-dsl minimum version
9+
610
0.4.4 (2017-12-13)
711
~~~~~~~~~~~~~~~~~~
812
Fix to_queryset with es 5.0/5.1

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Install Django Elasticsearch DSL::
4141
pip install 'elasticsearch-dsl>=5.0,<6.0'
4242

4343
# Elasticsearch 2.x
44-
pip install 'elasticsearch-dsl>=2.0,<3.0'
44+
pip install 'elasticsearch-dsl>=2.1,<3.0'
4545

4646
Then add ``django_elasticsearch_dsl`` to the INSTALLED_APPS
4747

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
django>=1.9.6
2-
elasticsearch-dsl>=2.0.0,<6.0.0
2+
elasticsearch-dsl>=2.1.0,<6.0.0

requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
bumpversion==0.5.3
22
wheel==0.29.0
33
django>=2.0,<2.1
4-
elasticsearch-dsl>=2.0.0,<6.0.0
4+
elasticsearch-dsl>=2.1.0,<6.0.0
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
],
4343
include_package_data=True,
4444
install_requires=[
45-
'elasticsearch-dsl>=2.0.0,<6.0.0',
45+
'elasticsearch-dsl>=2.1.0,<6.0.0',
4646
],
4747
license="Apache Software License 2.0",
4848
zip_safe=False,

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ deps =
1818
django-110: Django>=1.10,<1.11
1919
django-111: Django>=1.11,<2.0
2020
django-2: Django>=2.0,<2.1
21-
es2: elasticsearch-dsl>=2.0.0,<3.0.0
21+
es2: elasticsearch-dsl>=2.1.0,<3.0.0
2222
es5: elasticsearch-dsl>=5.0.0,<6.0.0
2323
-r{toxinidir}/requirements_test.txt
2424

0 commit comments

Comments
 (0)