-
Notifications
You must be signed in to change notification settings - Fork 14
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
"undefined symbol: PyUnicode_AsUTF8AndSize" runtime linker error under PyPy 7.3.5 #18
Comments
Interesting. I'm not very experienced with the details here (PyO3 does a very good job of just Making Things Work), but I wonder if this is related to this comment in PyO3:
These declarations might also be relevant? @davidhewitt do you think I should report this upstream on the PyO3 repo? |
The FFI declaration you pick out is correct. Looks like in PyO3 0.12 there was a bug with this declaration where it lacked the PyPy name. If you upgrade pyo3 things should work. |
Thanks! |
Awesome. I'll release a version bump. |
This fixes a build issue under PyPy: #18
This fixes a build issue under PyPy: #18 This raises the minimum support Python version to 3.6.
Just released version 0.2.0 and confirmed that |
I'd like to add PyPy to the regular CI test runs, but it looks like |
Hmm it's very possible there could be issues with In our PyO3 CI we install a test module using tox, which works ok. https://github.com/PyO3/pyo3/tree/main/examples/pyo3-pytests |
Thanks, I've filed PyO3/maturin#595. |
blake3-py
works with cpython 3.9, but it does not work with PyPy 7.3.5.The text was updated successfully, but these errors were encountered: