- Notifications
You must be signed in to change notification settings - Fork5.7k
Support Python 3.13 beta#4253
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
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.
Hey! Looks like you edited the (optional) requirements or the pre-commit hooks. I'm just a friendly reminder to keep the additional dependencies for the hooks in sync with the requirements :)
If possible we should do#4129 before this is merged so it's easier to change |
ironically if we don't merge this, then all ptb installations on py 3.13 will fail by default. And we don't have python version specific wheels so we can build it on another version and it should be good to go. uses pre-release of cffi 1.17.0 since they don't plan to release the full version until 3.13 rc1 |
Merged master so we should be good to go. Also verified that Not sure why type completeness is unhappy. All ruff did was remove some quotes around the annotation and that failed this test apparently. |
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.
Hi, thanks for the updates :) I left a bunch of comments🙆♂️
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Co-authored-by: Bibo-Joshi <22366557+Bibo-Joshi@users.noreply.github.com>
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.
LGTM, then, thanks for the work :) Anyhting to add from your side or should I merge?
All good from my side! |
9ce0f49
intomasterUh oh!
There was an error while loading.Please reload this page.
@@ -106,7 +106,7 @@ def __init__(self) -> None: | |||
self._application: Optional[weakref.ReferenceType[Application]] = None | |||
self._executor = AsyncIOExecutor() | |||
self.scheduler: AsyncIOScheduler = AsyncIOScheduler(**self.scheduler_configuration) | |||
self.scheduler:"AsyncIOScheduler" = AsyncIOScheduler(**self.scheduler_configuration) |
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.
ruff complains about this for me locally (i'm on py 3.13 so that's possibly why now)
also forget to mention that for some reason mypy segfaults on my build of python 3.13b1. Does anyone else have the same issue? |
Did not try yet ... |
Uh oh!
There was an error while loading.Please reload this page.
We should probably wait for
cffi
to release their new version to target 3.13, otherwise passport related functionality won't work. Tracking:python-cffi/cffi#23,python-cffi/cffi#71