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 8b365a1 commit 500070aCopy full SHA for 500070a
bin/install_travis.sh
@@ -1,16 +1,19 @@
1
#!/usr/bin/env bash
2
3
# symengine's bin/install_travis.sh will install miniconda
4
+conda update -q -n root conda
5
+
6
export conda_pkgs="python=${PYTHON_VERSION} pip cython sympy nose pytest"
7
8
if [[ "${WITH_NUMPY}" != "no" ]]; then
9
export conda_pkgs="${conda_pkgs} numpy";
10
fi
11
12
if [[ "${WITH_SAGE}" == "yes" ]]; then
13
+ # This is split to avoid the 10 minute limit
14
+ conda install -q sagelib
15
export conda_pkgs="${conda_pkgs} sage";
16
17
-conda update -q -n root conda
-conda install -q ${conda_pkgs} libgap=4.8.3
18
+conda install -q ${conda_pkgs}
19
source activate $our_install_dir;
0 commit comments