-
Notifications
You must be signed in to change notification settings - Fork 549
Maintain compatibility with CPython 3.13 #1242
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
base: master
Are you sure you want to change the base?
Conversation
@daskol You need to edit the files that use asyncore (Removed in python 3.13) to make it use asyncio
Maybe be you could edit the files to use asyncore or asyncio by case (python>=3.13 or not) |
@daskol and even after I edit for some reason I can't import the cassandra.io.libevwrapper |
@medaminezghal What about |
@daskol if you build the package without the C extensions it should work (of course after editing the files that use asyncore) and then you can build cqlsh in python 3.13 |
@daskol you can replace any code that use asyncore with asyncio safely https://docs.python.org/3/library/asyncore.html |
Do |
I think it’s not useful to use unmaintained package as provided in the description. So it’s better to use asyncio |
@daskol I think you need to fix the problem related to this issue from other project. |
See changes in Python C API in CPython 3.13 changelog. Initial discussion is in AUR.