-
Notifications
You must be signed in to change notification settings - Fork 13
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
Add explicit Python 3.13 support #188
Conversation
It's not related to Python 3.13.
caa2c3f
to
78743cf
Compare
@@ -182,7 +182,7 @@ async def perform_request( # type: ignore[override] | |||
data=body_to_send, | |||
headers=request_headers, | |||
timeout=aiohttp_timeout, | |||
**kwargs, | |||
**kwargs, # type: ignore[arg-type] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not related to Python 3.13, but caused instead by aio-libs/aiohttp#8463. I.. just have no idea how to make mypy happy here, short of maybe adding a class?
raise err from None | ||
raise err from e |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is also unrelated, but it feels wrong to hide parts of exceptions. (And this was needed to debug chain certs code.)
(cherry picked from commit 6c27e2c)
Closes #162