Skip to content

Commit ea86e2b

Browse files
Support up-to-date botocore (#1100)
* relax botocore dependency specification --------- Co-authored-by: Alexander Mohr <thehesiod@users.noreply.github.com>
1 parent a904bd1 commit ea86e2b

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.12.3 (2024-04-11)
5+
^^^^^^^^^^^^^^^^^^^
6+
* relax botocore dependency specification
7+
48
2.12.2 (2024-04-01)
59
^^^^^^^^^^^^^^^^^^^
610
* expose configuration of ``http_session_cls`` in ``AioConfig``

aiobotocore/__init__.py

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

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.34.41,<1.34.52',
10+
'botocore>=1.34.41,<1.34.70',
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.32.41,<1.32.52'],
18-
'boto3': ['boto3>=1.34.41,<1.34.52'],
17+
'awscli': ['awscli>=1.32.41,<1.32.70'],
18+
'boto3': ['boto3>=1.34.41,<1.34.70'],
1919
}
2020

2121

0 commit comments

Comments
 (0)