From 972c3a6c2a2251089b905833fcb0ea5822ebd707 Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Thu, 26 Dec 2024 23:48:40 +0100 Subject: [PATCH] relax `botocore` dependency specification --- CHANGES.rst | 4 ++++ aiobotocore/__init__.py | 2 +- pyproject.toml | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 24466373..340f85f1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,10 @@ Changes ------- +2.16.1 (2024-12-26) +^^^^^^^^^^^^^^^^^^^ +* relax botocore dependency specification + 2.16.0 (2024-12-16) ^^^^^^^^^^^^^^^^^^^ * bump botocore dependency specification diff --git a/aiobotocore/__init__.py b/aiobotocore/__init__.py index 48aa744f..37a2f4fd 100644 --- a/aiobotocore/__init__.py +++ b/aiobotocore/__init__.py @@ -1 +1 @@ -__version__ = '2.16.0' +__version__ = '2.16.1' diff --git a/pyproject.toml b/pyproject.toml index c60ee4e9..145d9cd2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ classifiers = [ dynamic = ["version", "readme"] dependencies = [ - "botocore >=1.35.74, <1.35.82", # NOTE: When updating, always keep `project.optional-dependencies` aligned + "botocore >=1.35.74, <1.35.89", # NOTE: When updating, always keep `project.optional-dependencies` aligned "aiohttp >=3.9.2, <4.0.0", "wrapt >=1.10.10, <2.0.0", "aioitertools >=0.5.1, <1.0.0", @@ -38,10 +38,10 @@ dependencies = [ [project.optional-dependencies] awscli = [ - "awscli >=1.36.15, <1.36.23", + "awscli >=1.36.15, <1.36.30", ] boto3 = [ - "boto3 >=1.35.74, <1.35.82", + "boto3 >=1.35.74, <1.35.89", ] [project.urls]