diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-10-27 16:20:55 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-10-27 16:21:10 -0700 |
commit | f702293e0dd43a5800e45387a4719e33100c2423 (patch) | |
tree | f76c85be3bcd342e1b3bb96dff3c3bbd7efefe62 | |
parent | 478d7d06ad9e56145cb94f3461c355b1ba9eb491 (diff) | |
download | fuzzycat-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.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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", |