-
Notifications
You must be signed in to change notification settings - Fork 68
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
Missing prepare_metadata_for_build_wheel
attribute
#55
Comments
Some debugging:
Let me add the full CI log to future-proof this issue:
|
It looks like in the future |
Ah, the last commit on scipy/scipy#16187 is getting us somewhere: removing
So now it starts The new error is:
That's fine, that's either a Meson issue with handling of The |
Yes, I agree it's unfortunate that the exceptions get chained like that, but the real problem is not the missing I am not sure what is causing |
Don't worry about that one, that was an issue in my build config. There is a real bug though in either |
I had another occurance of this for dbus-python and it's not clear that this is related. Same message but slightly different issue? pip install --upgrade dbus-python × Preparing metadata (pyproject.toml) did not run successfully. ...
...
Again this looks like a pip517 issue |
@rh0dium this is a regular build error:
the rest is just boilerplate. |
@rh0dium I'm having the same issue with pip installing dbus-python on a fresh setup of fedora 36 & pyenv with python 3.10.7. (edit: filed an issue at https://gitlab.freedesktop.org/dbus/dbus-python/-/issues/45 ) current workaround is to use a prior version - 'pip install dbus-python==1.2.18' |
Just observed this in a 32-bit Linux SciPy CI job (log):
PEP 517 says that this hook is optional, so it's not clear to me that this is a problem in
meson-python
, it may be inpep517
or inpip
.The command that triggered it is:
Other invocations of
pip install . --no-build-isolation
don't have that issue. It may be that we're using pip 22.1 though - I'll try to pin it to the same 22.0.4 version as in other jobs.The text was updated successfully, but these errors were encountered: