-
Notifications
You must be signed in to change notification settings - Fork 18
Add explicit Python 3.13 support #188
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
Conversation
It's not related to Python 3.13.
caa2c3f to
78743cf
Compare
| 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?
| exception=err, | ||
| ) | ||
| 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)
(cherry picked from commit 6c27e2c)
(cherry picked from commit 6c27e2c)
(cherry picked from commit 6c27e2c) Co-authored-by: Quentin Pradet <[email protected]>
(cherry picked from commit 6c27e2c) Co-authored-by: Quentin Pradet <[email protected]>
Closes #162