-
Notifications
You must be signed in to change notification settings - Fork 0
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
CI: Verify support on Python 3.13 #14
Conversation
02d9615
to
ff30ece
Compare
@@ -44,6 +44,7 @@ classifiers = [ | |||
"Programming Language :: Python :: 3.10", | |||
"Programming Language :: Python :: 3.11", | |||
"Programming Language :: Python :: 3.12", | |||
"Programming Language :: Python :: 3.13", |
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.
Currently, asyncpg does not provide binary wheels for CPython 3.13, and building it fails on GHA. A new release will probably be around the corner.
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.
Here we go. 🙇
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.
asyncpg 0.30.0 has been released. Thanks a stack, @elprans and all contributors.
ff30ece
to
d730986
Compare
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.
Do we need to specify version >= 0.30.0 in https://github.com/mfussenegger/cr8/blob/master/setup.py#L32?
I don't think so. There have been no API or otherwise functional changes. It is just about having support for Python 3.13 by verifying it. In the same spirit as on our CI environment, pip or other installers will most likely select the right versions of dependency packages to fit their environments. |
d730986
to
8273d99
Compare
About
Python 3.13.0 has been released on Oct. 7, 2024. This PR intends to add CI verification.
References