We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b25b38b commit 362c792Copy full SHA for 362c792
support/setup_ci.sh
@@ -21,11 +21,14 @@ fi
21
if [ ${python_version} = "2.7" ]; then
22
BOOST=""
23
pip="pip<=19.3.1"
24
+ # Python.h includes crypt.h, which is no longer provided by default
25
+ crypt="libxcrypt"
26
else
27
BOOST="libboost-devel"
28
pip="pip"
29
+ crypt=""
30
fi
-conda create --yes -q -n python${python_version} -c salilab python=${python_version} ${pip} ${IMP_CONDA} ${BOOST} gxx_linux-64 eigen cereal swig cmake numpy
31
+conda create --yes -q -n python${python_version} -c salilab python=${python_version} ${pip} ${crypt} ${IMP_CONDA} ${BOOST} gxx_linux-64 eigen cereal swig cmake numpy
32
eval "$(conda shell.bash hook)"
33
conda activate python${python_version}
34
0 commit comments