We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, installing the package on Python 3.13 will raise the following error because of cffi 1.16.0:
cffi
'PyErr_WriteUnraisable' declared here PyAPI_FUNC(void) PyErr_WriteUnraisable(PyObject *);
This is fixed in cffi 1.17.0, but unfortunately, it's not released yet.
The fix: python-cffi/cffi#23
Currently, the only workaround is to install version 1.17.0rc1 until a new release of cffi is created.
1.17.0rc1
Thanks, @sydney-runkle, for reporting the issue.
Edit: 1.17 has been released and we can then update the cffi dependency
The text was updated successfully, but these errors were encountered:
Amazing! We'll update our CI when you guys do your next release!
Sorry, something went wrong.
art049
Successfully merging a pull request may close this issue.
Currently, installing the package on Python 3.13 will raise the following error because of
cffi
1.16.0:This is fixed in cffi 1.17.0, but unfortunately, it's not released yet.
The fix: python-cffi/cffi#23
Currently, the only workaround is to install version
1.17.0rc1
until a new release of cffi is created.Thanks, @sydney-runkle, for reporting the issue.
Edit: 1.17 has been released and we can then update the cffi dependency
The text was updated successfully, but these errors were encountered: