Skip to content

Commit

Permalink
Make sure BBHx knows how to link locally-installed LAPACK (#4855)
Browse files Browse the repository at this point in the history
* Make sure BBHx knows how to link locally-installed LAPACK

* Woops, fix a mistake

* That did not work, but this looks better
  • Loading branch information
titodalcanton committed Aug 21, 2024
1 parent 0a7b2ed commit 81305b4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ conda_deps=
gsl
lapack==3.6.1
conda_channels=conda-forge
setenv =
; Tell the linker to look for shared libs inside the temporary Conda env.
; Needed to build BBHx's wheel, whick links to LAPACK.
LIBRARY_PATH={envdir}/lib:{env:LIBRARY_PATH:}
commands = pytest

# The following are long running or may require
Expand Down Expand Up @@ -81,5 +85,9 @@ conda_deps=
lapack==3.6.1
openmpi
conda_channels=conda-forge
setenv = PYCBC_TEST_TYPE=docs
setenv =
PYCBC_TEST_TYPE=docs
; Tell the linker to look for shared libs inside the temporary Conda env.
; Needed to build BBHx's wheel, whick links to LAPACK.
LIBRARY_PATH={envdir}/lib:{env:LIBRARY_PATH:}
commands = bash tools/pycbc_test_suite.sh

0 comments on commit 81305b4

Please sign in to comment.