Skip to content

Commit 9dd517b

Browse files
authoredOct 17, 2023
Support up-to-date botocore and urllib3 2.0 (#1037)
* relax botocore dependency specification * bump minimum docker-py * relax botocore dependency specification
1 parent 5334722 commit 9dd517b

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed
 

‎CHANGES.rst

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changes
22
-------
33

4+
2.7.1 (2023-10-17)
5+
^^^^^^^^^^^^^^^^^^
6+
* relax botocore dependency specification
7+
48
2.7.0 (2023-08-17)
59
^^^^^^^^^^^^^^^^^^
610
* add support for Python 3.12

‎aiobotocore/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.7.0'
1+
__version__ = '2.7.1'

‎requirements-dev.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ flake8-black~=0.3.3
66
flake8-isort~= 4.1.1
77
black~=22.6.0
88
isort~= 5.10.1
9-
docker~=5.0.0
9+
docker~=6.1.3
1010
moto[server,s3,sqs,lambda,dynamodb,cloudformation,sns,batch,ec2,rds]~=4.0.0
1111
pytest~=6.2.4
1212
pytest-cov~=4.1.0

‎setup.py

+3-3
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.31.17,<1.31.18',
10+
'botocore>=1.31.16,<1.31.65',
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.29.17,<1.29.18'],
18-
'boto3': ['boto3>=1.28.17,<1.28.18'],
17+
'awscli': ['awscli>=1.29.16,<1.29.65'],
18+
'boto3': ['boto3>=1.28.16,<1.28.65'],
1919
}
2020

2121

‎tests/test_patches.py

+9-2
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,11 @@
179179
BaseClient.__getattr__: {'3ec17f468f50789fa633d6041f40b66a2f593e77'},
180180
# config.py
181181
Config.merge: {'c3dd8c3ffe0da86953ceba4a35267dfb79c6a2c8'},
182-
Config: {'4153fcb2ddf68b86f3774da1016b9cbfa1659b0b'},
182+
Config: {
183+
'4153fcb2ddf68b86f3774da1016b9cbfa1659b0b',
184+
'c6b76ca9e061c4fee99be96fb716a49043eb1806',
185+
'ef03037bbe22945d5aa83bf39854e758f1b0c768',
186+
},
183187
# credentials.py
184188
create_mfa_serial_refresher: {'9b5e98782fcacdcea5899a6d0d29d1b9de348bb0'},
185189
Credentials.get_frozen_credentials: {
@@ -554,7 +558,10 @@
554558
'86946722d10a72b593483fca0abf30100c609178'
555559
},
556560
# httpsession.py
557-
URLLib3Session: {'c72094afb3aa62db0ade9be09be72ec7a2c3d80a'},
561+
URLLib3Session: {
562+
'c72094afb3aa62db0ade9be09be72ec7a2c3d80a',
563+
'1c418944abceb3a3d76c2c22348b4a39280d27ef',
564+
},
558565
EndpointDiscoveryHandler.discover_endpoint: {
559566
'd87eff9008356a6aaa9b7078f23ba7a9ff0c7a60'
560567
},

‎tests/test_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def test_release_versions():
165165
# get aioboto reqs
166166
with (_root_path / 'setup.py').open() as f:
167167
content = f.read()
168-
aioboto_reqs = _get_boto_module_versions(content, True)
168+
aioboto_reqs = _get_boto_module_versions(content, False)
169169

170170
# get awscli reqs
171171
awscli_resp = requests.get(

0 commit comments

Comments
 (0)