From ac3b541515620e87ea7c7d22531bab3bff1a39b2 Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Tue, 10 Sep 2024 23:03:08 +0200 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 57f0b0d9..85a638bd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,10 @@ Changes ------- +2.14.1 (2024-09-10) +^^^^^^^^^^^^^^^^^^^ +* relax botocore dependency specification + 2.14.0 (2024-08-28) ^^^^^^^^^^^^^^^^^^^ * bump botocore dependency specification diff --git a/aiobotocore/__init__.py b/aiobotocore/__init__.py index 6684d2b8..5fd5f7b7 100644 --- a/aiobotocore/__init__.py +++ b/aiobotocore/__init__.py @@ -1 +1 @@ -__version__ = '2.14.0' +__version__ = '2.14.1' diff --git a/pyproject.toml b/pyproject.toml index 79e5349a..8a1ba879 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ classifiers = [ dynamic = ["version", "readme"] dependencies = [ - "botocore >=1.35.0, <1.35.8", # NOTE: When updating, always keep `project.optional-dependencies` aligned + "botocore >=1.35.0, <1.35.16", # 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", @@ -37,10 +37,10 @@ dependencies = [ [project.optional-dependencies] awscli = [ - "awscli >=1.34.0, <1.34.8", + "awscli >=1.34.0, <1.34.16", ] boto3 = [ - "boto3 >=1.35.0, <1.35.8", + "boto3 >=1.35.0, <1.35.16", ] [project.urls]