Skip to content

Commit e395778

Browse files
authored
relax botocore dependency specification (#1069)
1 parent bd32ed0 commit e395778

6 files changed

Lines changed: 19 additions & 9 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repos:
1010
hooks:
1111
- id: pyupgrade
1212
args:
13-
- '--py36-plus'
13+
- '--py38-plus'
1414
- repo: 'https://github.com/PyCQA/isort'
1515
rev: 5.12.0
1616
hooks:

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.10.0 (2024-01-18)
5+
^^^^^^^^^^^^^^^^^^^
6+
* bump botocore dependency specification
7+
48
2.9.1 (2024-01-17)
59
^^^^^^^^^^^^^^^^^^
610
* fix race condition in S3 Express identity cache #1072

aiobotocore/__init__.py

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

aiobotocore/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ def get_paginator(self, operation_name):
547547
pageable. You can use the ``client.can_paginate`` method to
548548
check if an operation is pageable.
549549
550-
:rtype: L{botocore.paginate.Paginator}
550+
:rtype: ``botocore.paginate.Paginator``
551551
:return: A paginator object.
552552
553553
"""
@@ -607,7 +607,7 @@ def get_waiter(self, waiter_name):
607607
section of the service docs for a list of available waiters.
608608
609609
:returns: The specified waiter object.
610-
:rtype: botocore.waiter.Waiter
610+
:rtype: ``botocore.waiter.Waiter``
611611
"""
612612
config = self._get_waiter_config()
613613
if not config:

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.33.14',
10+
'botocore>=1.33.2,<1.34.23',
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.31.14'],
18-
'boto3': ['boto3>=1.33.2,<1.33.14'],
17+
'awscli': ['awscli>=1.31.2,<1.32.23'],
18+
'boto3': ['boto3>=1.33.2,<1.34.23'],
1919
}
2020

2121

tests/test_patches.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,14 @@
184184
BaseClient._resolve_endpoint_ruleset: {
185185
'f09731451ff6ba0645dc82e5c7948dfbf781e025',
186186
},
187-
BaseClient.get_paginator: {'3531d5988aaaf0fbb3885044ccee1a693ec2608b'},
188-
BaseClient.get_waiter: {'44f0473d993d49ac7502984a7ccee3240b088404'},
187+
BaseClient.get_paginator: {
188+
'3531d5988aaaf0fbb3885044ccee1a693ec2608b',
189+
'1c38079de68ccd43a5a06e36b1a47ec62233a7c2',
190+
},
191+
BaseClient.get_waiter: {
192+
'44f0473d993d49ac7502984a7ccee3240b088404',
193+
'4a4aeabe53af25d3737204187a31f930230864b4',
194+
},
189195
BaseClient.__getattr__: {'3ec17f468f50789fa633d6041f40b66a2f593e77'},
190196
# config.py
191197
Config.merge: {'c3dd8c3ffe0da86953ceba4a35267dfb79c6a2c8'},

0 commit comments

Comments
 (0)