Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 99b9244

Browse files
committedJan 29, 2024
address breaking change introduced in aiohttp==3.9.2 #882
1 parent 6a6d642 commit 99b9244

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
 

‎.github/workflows/python-package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
matrix:
2222
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
2323
include:
24-
- aiohttp-version: '==3.7.4.post0'
24+
- aiohttp-version: '==3.9.2'
2525
- aiohttp-version: '<4.0.0'
2626
python-version: '3.11'
2727
fail-fast: false

‎CHANGES.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
Changes
22
-------
33

4-
2.11.2 (2024-01-27)
4+
2.12.0 (2024-01-29)
55
^^^^^^^^^^^^^^^^^^^
6+
* address breaking change introduced in `aiohttp==3.9.2` #882
67
* fix use of proxies #1070
78

89
2.11.1 (2024-01-25)

‎aiobotocore/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.11.2'
1+
__version__ = '2.12.0'

‎aiobotocore/httpsession.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,7 @@ def _create_connector(self, proxy_url):
162162

163163
return aiohttp.TCPConnector(
164164
limit=self._max_pool_connections,
165-
verify_ssl=bool(self._verify),
166-
ssl=ssl_context,
165+
ssl=ssl_context or False,
167166
**self._connector_args,
168167
)
169168

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
install_requires = [
99
# pegged to also match items in `extras_require`
1010
'botocore>=1.33.2,<1.34.28',
11-
'aiohttp>=3.7.4.post0,<4.0.0',
11+
'aiohttp>=3.9.2,<4.0.0',
1212
'wrapt>=1.10.10, <2.0.0',
1313
'aioitertools>=0.5.1,<1.0.0',
1414
]

0 commit comments

Comments
 (0)
Please sign in to comment.