From f702293e0dd43a5800e45387a4719e33100c2423 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 27 Oct 2021 16:20:55 -0700 Subject: deps: pin elasticsearch to less than 7.14 This is to avoid 'elasticsearch.exceptions.UnsupportedProductError' errors in newer versions of the elasticsearch client libraries. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 99519e7..290740f 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,8 @@ with open("README.md", "r") as fh: ]}, install_requires=[ "dynaconf>=3", - "elasticsearch-dsl>=7.0.0,<8.0.0", + "elasticsearch>=7.8.0,<7.14.0", + "elasticsearch-dsl>=7.0.0,<8.0.0", "fatcat-openapi-client>=0.3.3", # https://pypi.org/project/fatcat-openapi-client/ "ftfy", "glom", -- cgit v1.2.3