Skip to content

Commit d36c373

Browse files
authored
Support up-to-date botocore (#1079)
1 parent 6d33946 commit d36c373

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

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.11.1 (2024-01-25)
5+
^^^^^^^^^^^^^^^^^^^
6+
* bump botocore dependency specification
7+
48
2.11.0 (2024-01-19)
59
^^^^^^^^^^^^^^^^^^^
610
* send project-specific `User-Agent` HTTP header #853

aiobotocore/__init__.py

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

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
# NOTE: When updating botocore make sure to update awscli/boto3 versions below
88
install_requires = [
99
# pegged to also match items in `extras_require`
10-
'botocore>=1.33.2,<1.34.23',
10+
'botocore>=1.33.2,<1.34.28',
1111
'aiohttp>=3.7.4.post0,<4.0.0',
1212
'wrapt>=1.10.10, <2.0.0',
1313
'aioitertools>=0.5.1,<1.0.0',
1414
]
1515

1616
extras_require = {
17-
'awscli': ['awscli>=1.31.2,<1.32.23'],
18-
'boto3': ['boto3>=1.33.2,<1.34.23'],
17+
'awscli': ['awscli>=1.31.2,<1.32.28'],
18+
'boto3': ['boto3>=1.33.2,<1.34.28'],
1919
}
2020

2121

0 commit comments

Comments
 (0)