Skip to content

Commit a2b1b68

Browse files
authored
Merge pull request #1213 from jakob-keller/bump-botocore
Relax `botocore` dependency specification
2 parents 09ed38a + 90106e7 commit a2b1b68

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
make mototest
8484
- name: Upload coverage to Codecov
8585
if: matrix.python-version == '3.11'
86-
uses: codecov/codecov-action@v4.6.0
86+
uses: codecov/codecov-action@v4.5.0
8787
with:
8888
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
8989
files: ./coverage.xml

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changes
22
-------
33

4+
2.15.2 (2024-10-09)
5+
^^^^^^^^^^^^^^^^^^^
6+
* relax botocore dependency specification
7+
48
2.15.1 (2024-09-19)
59
^^^^^^^^^^^^^^^^^^^
610
* relax botocore dependency specification

aiobotocore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.15.1'
1+
__version__ = '2.15.2'

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ classifiers = [
3030
dynamic = ["version", "readme"]
3131

3232
dependencies = [
33-
"botocore >=1.35.16, <1.35.24", # NOTE: When updating, always keep `project.optional-dependencies` aligned
33+
"botocore >=1.35.16, <1.35.37", # NOTE: When updating, always keep `project.optional-dependencies` aligned
3434
"aiohttp >=3.9.2, <4.0.0",
3535
"wrapt >=1.10.10, <2.0.0",
3636
"aioitertools >=0.5.1, <1.0.0",
3737
]
3838

3939
[project.optional-dependencies]
4040
awscli = [
41-
"awscli >=1.34.16, <1.34.24",
41+
"awscli >=1.34.16, <1.35.3",
4242
]
4343
boto3 = [
44-
"boto3 >=1.35.16, <1.35.24",
44+
"boto3 >=1.35.16, <1.35.37",
4545
]
4646

4747
[project.urls]

0 commit comments

Comments
 (0)