You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using cibuildwheel to build and repair a wheel that is built using cmake, pybind11, scikit-build-core and uv.
The C++ code depends on some external libraries that are fetched and built as part of the compilation of the project. The shared libraries generated are stored in the uv-build folder (see the [tool.scikit-build] entry).
Locally (on Mac), I had to set manually DYLD_LIBRARY_PATH to ***/uv-build/lib so the manual execution of delocate could fix the wheel. (I can't test cibuildwheel locally because I had to revert delocate to the previous version because of this bug: matthew-brett/delocate#247)
My question is: how to do the same in the CI (linux and Mac)?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I'm using
cibuildwheel
to build and repair a wheel that is built usingcmake
,pybind11
,scikit-build-core
anduv
.The C++ code depends on some external libraries that are fetched and built as part of the compilation of the project. The shared libraries generated are stored in the
uv-build
folder (see the[tool.scikit-build]
entry).Locally (on Mac), I had to set manually
DYLD_LIBRARY_PATH
to***/uv-build/lib
so the manual execution ofdelocate
could fix the wheel. (I can't testcibuildwheel
locally because I had to revert delocate to the previous version because of this bug: matthew-brett/delocate#247)My question is: how to do the same in the CI (linux and Mac)?
I tried something like:
where
but with no luck.
I'm sure I'm missing something obvious so any clue would be much appreciated!
Beta Was this translation helpful? Give feedback.
All reactions