From ea86e2bd1882f50be5629d547af18019d668bf69 Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Thu, 11 Apr 2024 18:30:37 +0200 Subject: [PATCH] Support up-to-date `botocore` (#1100) * relax botocore dependency specification --------- Co-authored-by: Alexander Mohr --- 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 18fc9d2a..39855fcb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,10 @@ Changes ------- +2.12.3 (2024-04-11) +^^^^^^^^^^^^^^^^^^^ +* relax botocore dependency specification + 2.12.2 (2024-04-01) ^^^^^^^^^^^^^^^^^^^ * expose configuration of ``http_session_cls`` in ``AioConfig`` diff --git a/aiobotocore/__init__.py b/aiobotocore/__init__.py index 6d3deb79..2de3060d 100644 --- a/aiobotocore/__init__.py +++ b/aiobotocore/__init__.py @@ -1 +1 @@ -__version__ = '2.12.2' +__version__ = '2.12.3' diff --git a/setup.py b/setup.py index adf7feba..00a75d28 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.70', '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.70'], + 'boto3': ['boto3>=1.34.41,<1.34.70'], }