diff --git a/requirements.txt b/requirements.txt index f375042..aa2577f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ urllib3>=1.26.5,<2 requests>=2.26.0 boto3>=1.18.18 requests_aws4auth>=1.1.1 -click>=7.0,<8.0 +click>=8.0.0 pyyaml>=5.4.1 certifi>=2021.5.30 six>=1.16.0 diff --git a/setup.cfg b/setup.cfg index 2d35066..1e11c6b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -26,7 +26,7 @@ install_requires = requests>=2.26.0 boto3>=boto3-1.18.18 requests_aws4auth>=1.1.1 - click>=7.0,<8.0 + click>=8.0.0 pyyaml>=5.4.1 certifi>=2021.5.30 six>=1.16.0 @@ -38,7 +38,7 @@ setup_requires = requests>=2.26.0 boto3>=boto3-1.18.18 requests_aws4auth>=1.1.1 - click>=7.0,<8.0 + click>=8.0.0 pyyaml>=5.4.1 certifi>=2021.5.30 six>=1.16.0 diff --git a/setup.py b/setup.py index 62bc30b..85ea947 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def get_install_requires(): res.append('requests>=2.26.0') res.append('boto3>=1.18.18') res.append('requests_aws4auth>=1.1.1') - res.append('click>=7.0,<8.0') + res.append('click>=8.0.0') res.append('pyyaml>=5.4.1') res.append('voluptuous>=0.12.1') res.append('certifi>=2021.5.30')