From edc93f3df4ce9998f0d785fb964878611f4e82be Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Fri, 15 Mar 2024 09:23:00 +0100 Subject: [PATCH] relax botocore dependency specification --- CHANGES.rst | 4 ++++ aiobotocore/__init__.py | 2 +- setup.py | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 9e10c1ed..32c017b0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,10 @@ Changes ------- +2.12.2 (2024-03-21) +^^^^^^^^^^^^^^^^^^^ +* relax botocore dependency specification + 2.12.1 (2024-03-04) ^^^^^^^^^^^^^^^^^^^ * fix use of proxies #1070 diff --git a/aiobotocore/__init__.py b/aiobotocore/__init__.py index 524297b5..6d3deb79 100644 --- a/aiobotocore/__init__.py +++ b/aiobotocore/__init__.py @@ -1 +1 @@ -__version__ = '2.12.1' +__version__ = '2.12.2' diff --git a/setup.py b/setup.py index adf7feba..56c32bc4 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.34.41,<1.34.52', + 'botocore>=1.34.41,<1.34.68', '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.32.41,<1.32.52'], - 'boto3': ['boto3>=1.34.41,<1.34.52'], + 'awscli': ['awscli>=1.32.41,<1.32.68'], + 'boto3': ['boto3>=1.34.41,<1.34.68'], }