diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-09-21 23:10:02 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-09-21 23:10:02 +0200 |
commit | 86cc3191ce03042ef4a0c6c8a44f4094a140b802 (patch) | |
tree | 8f4983a8c1ff37a08418ae598865eef5675cddab | |
parent | a37404f30b2c1afa0b46ee30a5b59d7312c119d0 (diff) | |
download | fuzzycat-86cc3191ce03042ef4a0c6c8a44f4094a140b802.tar.gz fuzzycat-86cc3191ce03042ef4a0c6c8a44f4094a140b802.zip |
setup: narrow dependency versions
-rw-r--r-- | setup.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -26,14 +26,14 @@ with open("README.md", "r") as fh: "fuzzycat=fuzzycat:__main__" ]}, install_requires=[ - "dynaconf>=1", - "elasticsearch-dsl", - "fatcat-openapi-client", # https://pypi.org/project/fatcat-openapi-client/ + "dynaconf>=3", + "elasticsearch-dsl>=7.0.0,<8.0.0", + "fatcat-openapi-client>=0.3.3", # https://pypi.org/project/fatcat-openapi-client/ "ftfy", "glom", "jellyfish", "regex", - "requests", + "requests>=2", "toml", "unidecode>=0.10", "zstandard", |