Skip to content

Commit

Permalink
We now need Boost headers to build with IMP on Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Oct 15, 2023
1 parent dd38725 commit 2281166
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tools/setup_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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} pip imp-nightly gxx_linux-64 eigen cereal swig cmake numpy
conda create --yes -q -n python${python_version} -c salilab -c conda-forge python=${python_version} pip imp-nightly ${BOOST} gxx_linux-64 eigen cereal swig cmake numpy
eval "$(conda shell.bash hook)"
conda activate python${python_version}
pip install pytest-cov coverage

0 comments on commit 2281166

Please sign in to comment.