aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-10-27 16:20:55 -0700
committerBryan Newbold <bnewbold@archive.org>2021-10-27 16:21:10 -0700
commitf702293e0dd43a5800e45387a4719e33100c2423 (patch)
treef76c85be3bcd342e1b3bb96dff3c3bbd7efefe62
parent478d7d06ad9e56145cb94f3461c355b1ba9eb491 (diff)
downloadfuzzycat-f702293e0dd43a5800e45387a4719e33100c2423.tar.gz
fuzzycat-f702293e0dd43a5800e45387a4719e33100c2423.zip
deps: pin elasticsearch to less than 7.14
This is to avoid 'elasticsearch.exceptions.UnsupportedProductError' errors in newer versions of the elasticsearch client libraries.
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
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",