-
Notifications
You must be signed in to change notification settings - Fork 22
Exclude libraries from auditwheel #266
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
Exclude libraries from auditwheel #266
Conversation
cf8c3f3 introduced an option to exclude libraries from the wheel using auditwheel lib_whitelist policy. This is deprecated since pypa/auditwheel@4886850. This patch uses the --exclude option instead, see pypa/auditwheel@0a2fdd1.
cc @LucasGandel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like a great fix.
61c2757
to
7046713
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix introduced by: InsightSoftwareConsortium/ITKPythonPackage#266
Fix introduced by: InsightSoftwareConsortium/ITKPythonPackage#266
The change to use the new --exclude option looks good, thanks a lot! |
I made it because auditwheel could not find the shared libraries otherwise. Maybe it was working before thanks to the |
The error message in the failing build seems unrelated |
Maybe it is related to 96e3477? |
Fix introduced by: InsightSoftwareConsortium/ITKPythonPackage#266
Fix introduced by: InsightSoftwareConsortium/ITKPythonPackage#266
Fix introduced by: InsightSoftwareConsortium/ITKPythonPackage#266
Fix introduced by: InsightSoftwareConsortium/ITKPythonPackage#266
Fix introduced by: InsightSoftwareConsortium/ITKPythonPackage#266
Possibly but I could not figure out why the CudaCommon CI had a different cmake command line, with the new options of this commit and not the former one as yours. |
This PR