From 595f890f833910944b7bfc88ee65d91663108ae8 Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Wed, 13 Sep 2023 18:04:42 -0400 Subject: [PATCH] Fix CI on macOS Closes #51. --- .github/workflows/ci-macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index 9e5d46a..7c34d80 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -22,7 +22,7 @@ jobs: cd libconcord/bindings/python python3 -m build pip3 install dist/*.whl - python3 -c 'import libconcord; print(libconcord)' + DYLD_FALLBACK_LIBRARY_PATH=/usr/local/lib python3 -c 'import libconcord; print(libconcord)' cd - - name: Build concordance run: |