-
-
Notifications
You must be signed in to change notification settings - Fork 90
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
Problem installing version 0.15.0 on pypy3 (0.14.1 worked) #130
Comments
Hmmm. This is definitely an unwanted regression: pypy should be installing wheels. I'll try to get a fix landed in the next few days and get a 0.15.1 published. |
Correction: pypy did not install wheels before. So, something changed in the 0.15.0 release preventing the wheels from building. A manual bisection reveals commit e5a3baf as the culprit. After this commit, we get an error in the
I suppose the bug here is we are building the C extension/backend on PyPy when we should only be building the CFFI backend on that platform. (PyPy doesn't support the full CPython C API.) I'm actually kinda surprised that the C backend was building properly before! |
Yes, you are right, there isn't a pre-built wheel for pypy; I was misreading the output and forgot that pip builds a wheel from source during the install. It looks like you are on the right track. Thanks for taking a look! |
I apologize upfront that I don't have know what the root cause of the problem is because I don't know much about the changes between 0.14.1 and 0.15.0.
Here's the failure on 0.15.0: https://github.com/fastavro/fastavro/runs/1630514376?check_suite_focus=true
And here's a working install from a few days ago when it used 0.14.1: https://github.com/fastavro/fastavro/runs/1620804784?check_suite_focus=true (You'll want to look at the "Install Testing Dependencies" since that is the step that installs
zstandard
)I think the main difference I can see is that version 0.14.1 had a wheel to install whereas when trying to install 0.15.0 it installs from source and fails.
Does anyone have any thoughts?
The text was updated successfully, but these errors were encountered: