Skip to content

Commit 8a3cbec

Browse files
committed
Fix sage build
1 parent 19fbedd commit 8a3cbec

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

bin/install_travis.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ fi
1919

2020
if [[ "${WITH_SAGE}" == "yes" ]]; then
2121
# This is split to avoid the 10 minute limit
22-
conda install -q sagelib
23-
export conda_pkgs="${conda_pkgs} sage";
22+
conda install -q sagelib=8.1
23+
conda clean --all
24+
export conda_pkgs="${conda_pkgs} sage=8.1";
2425
fi
2526

2627
conda install -q ${conda_pkgs}
28+
conda clean --all
2729
source activate $our_install_dir;

0 commit comments

Comments
 (0)