| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
|
For the benefit of reviewers - #8673 implements the @rpath removal approach mentioned in the PR description. |
Sorry, something went wrong.
|
@freakboy3742 Presumably either this or #8673 can go in the next release for which the deadline to merge would be end of March. |
Sorry, something went wrong.
|
Thanks for the PRs! Yeah, we'll definitely include one or the other in the next release. I don't see too much difference so will flip a coin unless someone would like to argue for one over the other :) |
Sorry, something went wrong.
I'd argue the #8673 is better on the basis that it fixes the problem right next to the place where the problem is created, rather than relying on remembering later that a fix is needed for one specific library case. However, that's a strong opinion, weakly held; both solutions work. In terms of timing - while it's great this will be in the next release, the bug prevents testing of macOS builds on a local machine, so I'd argue it would be beneficial to merge it sooner rather than later. In order to test my iOS patch, I need to have include a version of this patch. |
Sorry, something went wrong.
|
I've just submitted #8743, which I believe is an even better solution, as it fixes the problem at the source; and, with any luck, eventually the patch used by that PR won't be needed. |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Resolves #8671. Alternative to #8673 and #8743
In #8500, I added
Pillow/pyproject.toml
Line 107 in 128f3f4
However, there is a known problem where using DYLD_LIBRARY_PATH with cibuildwheel doesn't propagate to delocate - https://cibuildwheel.pypa.io/en/stable/faq/#macos-passing-dyld_library_path-to-delocate
This isn't a problem in our CI job, but apparently is when running cibuildwheel locally.
This PR uses the suggested fix from cibuildwheel.