Unverified Commit d8ff3193 authored by Nicolas Hug's avatar Nicolas Hug Committed by GitHub
Browse files

Fix wheel relocation issues on OSX (#3794)



* hello

* Try with DYLD_FALLBACK_LIBRARY_PATH
Co-authored-by: default avatarEdgar Andrés Margffoy Tuay <andfoy@gmail.com>
parent 00ea88c0
...@@ -48,7 +48,7 @@ if [[ "$(uname)" == Darwin ]]; then ...@@ -48,7 +48,7 @@ if [[ "$(uname)" == Darwin ]]; then
bin_path=$(dirname $python_exec) bin_path=$(dirname $python_exec)
env_path=$(dirname $bin_path) env_path=$(dirname $bin_path)
for whl in *.whl; do for whl in *.whl; do
DYLD_LIBRARY_PATH="$env_path/lib/:$DYLD_LIBRARY_PATH" delocate-wheel -v $whl DYLD_FALLBACK_LIBRARY_PATH="$env_path/lib/:$DYLD_FALLBACK_LIBRARY_PATH" delocate-wheel -v $whl
done done
else else
if [[ "$OSTYPE" == "msys" ]]; then if [[ "$OSTYPE" == "msys" ]]; then
......
...@@ -117,6 +117,7 @@ class RoIOpTester(OpTester): ...@@ -117,6 +117,7 @@ class RoIOpTester(OpTester):
pass pass
def get_script_fn(*args, **kwargs): def get_script_fn(*args, **kwargs):
# Hello
pass pass
def expected_fn(*args, **kwargs): def expected_fn(*args, **kwargs):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment