From eae97439b36d237e56963acc7f933394a0084d2a Mon Sep 17 00:00:00 2001 From: Lou Kratz Date: Mon, 24 Jun 2024 14:23:13 -0400 Subject: [PATCH] Update Botocore to 1.34.131 (#1122) --- .github/workflows/python-package.yml | 2 +- CHANGES.rst | 4 ++++ aiobotocore/__init__.py | 2 +- requirements-dev.in | 2 +- setup.py | 6 +++--- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 4fcabc17..06483224 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -55,7 +55,7 @@ jobs: make mototest - name: Upload coverage to Codecov if: matrix.python-version == '3.11' - uses: codecov/codecov-action@v4.4.0 + uses: codecov/codecov-action@v4.5.0 with: token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos files: ./coverage.xml diff --git a/CHANGES.rst b/CHANGES.rst index 4de721d0..d76daa1f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,10 @@ Changes ------- +2.13.1 (2024-06-24) +^^^^^^^^^^^^^^^^^^^ +* bump botocore dependency specification + 2.13.0 (2024-05-16) ^^^^^^^^^^^^^^^^^^^ * address breaking change introduced in `aiohttp==3.9.2` #882 diff --git a/aiobotocore/__init__.py b/aiobotocore/__init__.py index 2321a43e..a5c528fb 100644 --- a/aiobotocore/__init__.py +++ b/aiobotocore/__init__.py @@ -1 +1 @@ -__version__ = '2.13.0' +__version__ = '2.13.1' diff --git a/requirements-dev.in b/requirements-dev.in index 5a122be2..8b0cdda1 100644 --- a/requirements-dev.in +++ b/requirements-dev.in @@ -1,6 +1,6 @@ codecov~=2.1.13 coverage==7.2.7 -docker~=6.1.3 +docker~=7.1 moto[server,s3,sqs,lambda,dynamodb,cloudformation,sns,batch,ec2,rds]~=4.2.9 pre-commit~=3.5.0 pytest==8.1.1 diff --git a/setup.py b/setup.py index 1821f690..155f8db1 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.70,<1.34.107', + 'botocore>=1.34.70,<1.34.132', 'aiohttp>=3.9.2,<4.0.0', 'wrapt>=1.10.10, <2.0.0', 'aioitertools>=0.5.1,<1.0.0', ] extras_require = { - 'awscli': ['awscli>=1.32.70,<1.32.107'], - 'boto3': ['boto3>=1.34.70,<1.34.107'], + 'awscli': ['awscli>=1.32.70,<1.33.14'], + 'boto3': ['boto3>=1.34.70,<1.34.132'], }