From d1b22593e6d6c43faa5a43d3b7d4c5d3b6868629 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 4 Sep 2019 14:42:09 +0200 Subject: [PATCH] Set click-log to >=0.3.2,<0.4 and click to >=7.0,<8 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 103fc0a..af897c8 100644 --- a/setup.py +++ b/setup.py @@ -79,9 +79,9 @@ def get_git_commit_datetime() -> str: PACKAGES = find_packages(exclude=['tests', 'tests.*']) REQUIRES = [ - 'aiohttp==3.5.4', - 'click-log==0.3.2', - 'click==7.0', + 'aiohttp>=3.5.4,<4', + 'click-log>=0.3.2,<0.4', + 'click==7.0,<8', 'dateparser==0.7.1', 'jinja2>=2.10', 'jsonpath-rw==1.4.0',