Skip to content

Commit

Permalink
Merge pull request #225 from libKriging/223-fix-python-311-compatibility
Browse files Browse the repository at this point in the history
fix python 311 compatibility
  • Loading branch information
hpwxf committed Nov 9, 2022
2 parents a5ba499 + 75559a1 commit 7c9752e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .travis-ci/linux-macos/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,17 @@ else

# Cleanup compiled libs to check right path finding
rm -fr src/lib

# add library directory search PATH for executables
export LD_LIBRARY_PATH=$PWD/installed/lib:${LD_LIBRARY_PATH}
case "$(uname -s)" in
Darwin)
export DYLD_LIBRARY_PATH=$PWD/installed/lib:${DYLD_LIBRARY_PATH}
;;

*)
export LD_LIBRARY_PATH=$PWD/installed/lib:${LD_LIBRARY_PATH}
;;
esac

ctest -C "${MODE}" ${CTEST_FLAGS}
fi
2 changes: 1 addition & 1 deletion dependencies/pybind11
Submodule pybind11 updated 193 files

0 comments on commit 7c9752e

Please sign in to comment.