Skip to content

Commit 500070a

Browse files
committed
Split installing sage
1 parent 8b365a1 commit 500070a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

bin/install_travis.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
#!/usr/bin/env bash
22

33
# symengine's bin/install_travis.sh will install miniconda
4+
conda update -q -n root conda
5+
46
export conda_pkgs="python=${PYTHON_VERSION} pip cython sympy nose pytest"
57

68
if [[ "${WITH_NUMPY}" != "no" ]]; then
79
export conda_pkgs="${conda_pkgs} numpy";
810
fi
911

1012
if [[ "${WITH_SAGE}" == "yes" ]]; then
13+
# This is split to avoid the 10 minute limit
14+
conda install -q sagelib
1115
export conda_pkgs="${conda_pkgs} sage";
1216
fi
1317

14-
conda update -q -n root conda
15-
conda install -q ${conda_pkgs} libgap=4.8.3
18+
conda install -q ${conda_pkgs}
1619
source activate $our_install_dir;

0 commit comments

Comments
 (0)