-
Notifications
You must be signed in to change notification settings - Fork 152
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
Fix: Patch RPATHs of non-Python extension dependencies #298
Conversation
…n-py extensions (pypa#134) * Adding minimal test wheel based on PR pypa#134 * Separate tests for each change in PR pypa#134 pypa#134 * non-py extension does not show in auditwheel show (ignoring assert) * Confirming tests on macOS * pytest in travis is weirdly triggering a manual test * Sorry! Forgot to install zlib-devel
Codecov Report
@@ Coverage Diff @@
## master #298 +/- ##
=======================================
Coverage 90.99% 91.00%
=======================================
Files 20 20
Lines 1088 1089 +1
Branches 235 235
=======================================
+ Hits 990 991 +1
Misses 55 55
Partials 43 43
Continue to review full report at Codecov.
|
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.
Co-authored-by: Bradley Dice <[email protected]>
I'm going to use this PR in my wheel building process until it's merged. Here's a simple script for anyone else that needs it: git clone https://github.com/mayeut/auditwheel.git -b issue136 auditwheel
cd auditwheel
pip install . For some reason, the version appears to be |
This PR resolves #136, and replaces the open (stalled) PR #139 from @thomaslima (closes #139) and rebase/rework the open PR #283 from @bdice (closes #283)
Summary in #283 is the nice one, so go there for more information.
Tests are much simpler here and still reproduce the issue without the fix of course.
Thanks @bdice, @thomaslima