diff --git a/Pipfile b/Pipfile index 80ff0543..c3ed0fb4 100644 --- a/Pipfile +++ b/Pipfile @@ -9,7 +9,7 @@ coverage = "==5.0.3" flake8 = "==3.7.9" flake8-formatter-abspath = "==1.0.1" docker = '<4' # fix: client version 1.39 is too new. Maximum supported API version is 1.38 -moto = {extras = ["server"],version = "==1.3.14"} +moto = {extras = ["server"],version = "==1.3.16"} idna = "==2.8" # broken pipenv resolver pytest = "==5.3.5" pytest-cov = "==2.8.1" diff --git a/setup.py b/setup.py index f4b49300..12b00a77 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ # NOTE: When updating botocore make sure to update awscli/boto3 versions below install_requires = [ # pegged to also match items in `extras_require` - 'botocore>=1.17.44,<1.17.45', + 'botocore~=1.17.40', 'aiohttp>=3.3.1', 'wrapt>=1.10.10', 'aioitertools>=0.5.1', @@ -19,8 +19,8 @@ def read(f): extras_require = { - 'awscli': ['awscli==1.18.121'], - 'boto3': ['boto3==1.14.44'], + 'awscli': ['awscli~=1.18.121'], + 'boto3': ['boto3~=1.14.40'] }