Skip to content

Commit

Permalink
Python 2 environment does not have libboost-devel
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Oct 8, 2023
1 parent 602ae99 commit 3f2e76f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion support/setup_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ conda config --add channels conda-forge
if [ ${imp_branch} = "develop" ]; then
IMP_CONDA="imp-nightly"
else
IMP_CONDA="imp libboost-devel"
if [ ${python_version} = "2.7" ]; then
IMP_CONDA="imp"
else
IMP_CONDA="imp libboost-devel"
fi
fi

conda create --yes -q -n python${python_version} -c salilab python=${python_version} pip ${IMP_CONDA} gxx_linux-64 eigen cereal swig cmake numpy
Expand Down

0 comments on commit 3f2e76f

Please sign in to comment.