From d828e2c55f4318f76bc93f3a5992494666dd638c Mon Sep 17 00:00:00 2001 From: Ben Webb Date: Fri, 13 Oct 2023 16:28:05 -0700 Subject: [PATCH] We now need Boost headers to build with IMP --- tools/setup_ci.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/setup_ci.sh b/tools/setup_ci.sh index 3934a1d..b201dfb 100755 --- a/tools/setup_ci.sh +++ b/tools/setup_ci.sh @@ -9,8 +9,13 @@ fi python_version=$1 +if [ ${python_version} = "2.7" ]; then + BOOST="" +else + BOOST="libboost-devel" +fi conda config --remove channels defaults # get conda-forge, not main, packages -conda create --yes -q -n python${python_version} -c salilab -c conda-forge python=${python_version} numpy pip imp-nightly gxx_linux-64 eigen cereal swig cmake protobuf +conda create --yes -q -n python${python_version} -c salilab -c conda-forge python=${python_version} numpy pip imp-nightly ${BOOST} gxx_linux-64 eigen cereal swig cmake protobuf eval "$(conda shell.bash hook)" conda activate python${python_version}