-
Notifications
You must be signed in to change notification settings - Fork 59
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
delocate-wheel do nothing on wheel #15
Comments
I think the problem is that your package has a single module at the top level (that goes in the To get delocate to work, you could reorganize your package like this:
where |
This method works, thank you very much! |
MRG: Document limitation with top-level Py module structure As discussed in Issue #12, Issue #15, and elsewhere delocate-wheel may ignore compiled extensions at the top level of a wheel that are not part of a Python package. This documents that limitation and shows how the package structure can be adjuste to fix it.
I'm building macosx wheels for lightpipes, the source code is:
https://github.com/guyskk/lightpipes/tree/wheels_for_macos
lightpipes need fftw, I install fftw by
brew install fftw
.to build the wheel, run
pip install numpy
thenpip wheel --no-deps -w wheelhouse ./lightpipes
.after that, I use delocate to fix the wheel:
but it do nothing on the wheel:
The text was updated successfully, but these errors were encountered: