From 89af505abae609314ea6d2ccced2244636ddb191 Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Wed, 9 Oct 2024 13:51:55 +0200 Subject: [PATCH 1/2] 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 afbe1c56..db375c72 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,10 @@ Changes ------- +2.15.2 (2024-10-09) +^^^^^^^^^^^^^^^^^^^ +* relax botocore dependency specification + 2.15.1 (2024-09-19) ^^^^^^^^^^^^^^^^^^^ * relax botocore dependency specification diff --git a/aiobotocore/__init__.py b/aiobotocore/__init__.py index 4135d855..30334bd3 100644 --- a/aiobotocore/__init__.py +++ b/aiobotocore/__init__.py @@ -1 +1 @@ -__version__ = '2.15.1' +__version__ = '2.15.2' diff --git a/pyproject.toml b/pyproject.toml index 1177ba3b..51bb8214 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ classifiers = [ dynamic = ["version", "readme"] dependencies = [ - "botocore >=1.35.16, <1.35.24", # NOTE: When updating, always keep `project.optional-dependencies` aligned + "botocore >=1.35.16, <1.35.37", # 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.34.16, <1.34.24", + "awscli >=1.34.16, <1.35.3", ] boto3 = [ - "boto3 >=1.35.16, <1.35.24", + "boto3 >=1.35.16, <1.35.37", ] [project.urls] From 90106e73ce38d2ca8e9c463bfc9aea5cf39ba2d9 Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Wed, 9 Oct 2024 14:53:46 +0200 Subject: [PATCH 2/2] Revert "Bump codecov/codecov-action from 4.5.0 to 4.6.0" This reverts commit 9b3b931350174ef646d730490b0475ca230cae24. --- .github/workflows/ci-cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index aa6a2ea8..b9cba5fc 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -83,7 +83,7 @@ jobs: make mototest - name: Upload coverage to Codecov if: matrix.python-version == '3.11' - uses: codecov/codecov-action@v4.6.0 + uses: codecov/codecov-action@v4.5.0 with: token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos files: ./coverage.xml