-
-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
potential aiohttp>=4.0.0 breaking changes #882
Comments
Running into this issue today pulling in aiobotocore 2.2.0 as a dependency to s3fs. Your pipfile specified |
cool will work on this asap, probably we need to test with both versions |
Some news about this issue? |
It looks like this just broke with aiohttp 3.9.2, which includes this change: aio-libs/aiohttp#8043 |
That shouldn't be too bad a fix, I reckon https://github.com/aio-libs/aiobotocore/blob/master/aiobotocore/httpsession.py#L114 removing verify_ssl argument and changing ssl to |
I'll look into it. There's #1077 fixing HTTPS proxy support that looks related to this issue. |
Just set the start value of |
Describe the bug
I have a suspicion we'll hit some issues when aiohttp 4.0.0 comes out judging by what I've seen in this issue terricain/aioboto3#237 where the user had installed 4.0.0a1.
The issue was using aiobotocore 1.3.3, where verify_ssl was an unexpected argument passed to aiohttp.TCPConnector, aiohttp.TCPConnector has since moved here but I reckon it would still have the same issue.
I shall look into this in more depth later today. Might be worth updating the dep to
aiohttp>=3.3.1,<4.0.0
.The text was updated successfully, but these errors were encountered: