-
Notifications
You must be signed in to change notification settings - Fork 46
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
Support Python 3.13 #526
Support Python 3.13 #526
Conversation
edgedb/protocol/protocol.pxd
Outdated
BINARY = 98 # b'b' | ||
JSON = 106 # b'j' | ||
JSON_ELEMENTS = 74 # b'J' | ||
NONE = 110 # b'n' |
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.
weird.
@@ -38,7 +38,7 @@ | |||
from setuptools.command import sdist as setuptools_sdist | |||
|
|||
|
|||
CYTHON_DEPENDENCY = 'Cython(>=0.29.24,<0.30.0)' | |||
CYTHON_DEPENDENCY = 'Cython(>=3.0.11,<3.1.0)' |
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.
Please leave the lower bound on 0.29.x before every other Cython package is upgraded (most importantly, server). This is for metapkg reasons.
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.
0.29.x doesn't support 3.13, AFAICT
Changes ======= * Support Python 3.13 (#527, #526) (by @msullivan) * Add more pgvector types (by @vpetrovykh in 576bb72)
No description provided.