From 281e68d34dc40b2afe0c77203d0879dfc812aa22 Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Thu, 16 Nov 2023 18:36:40 +0100 Subject: [PATCH] relax botocore dependency specification (#1048) --- CHANGES.rst | 3 ++- setup.py | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 9f0477f0..8fba16c8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,11 @@ Changes ------- -2.8.0 (2023-10-24) +2.8.0 (2023-10-25) ^^^^^^^^^^^^^^^^^^ * add AioStubber that returns AioAWSResponse() * remove confusing `aiobotocore.session.Session` symbol +* relax botocore dependency specification 2.7.0 (2023-10-17) ^^^^^^^^^^^^^^^^^^ diff --git a/setup.py b/setup.py index 81b6edc1..9f35ca4a 100644 --- a/setup.py +++ b/setup.py @@ -7,15 +7,15 @@ # NOTE: When updating botocore make sure to update awscli/boto3 versions below install_requires = [ # pegged to also match items in `extras_require` - 'botocore>=1.31.16,<1.31.65', + 'botocore>=1.31.16,<1.31.71', 'aiohttp>=3.7.4.post0,<4.0.0', 'wrapt>=1.10.10, <2.0.0', 'aioitertools>=0.5.1,<1.0.0', ] extras_require = { - 'awscli': ['awscli>=1.29.16,<1.29.65'], - 'boto3': ['boto3>=1.28.16,<1.28.65'], + 'awscli': ['awscli>=1.29.16,<1.29.71'], + 'boto3': ['boto3>=1.28.16,<1.28.71'], }