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 7039b11 commit 4a1a41eCopy full SHA for 4a1a41e
.travis.yml
@@ -52,7 +52,7 @@ matrix:
52
packages:
53
- binutils-dev
54
- g++-4.8
55
- - env: BUILD_TYPE="Debug" WITH_BFD="yes" PYTHON_VERSION="3.5" WITH_LLVM="yes"
+ - env: BUILD_TYPE="Debug" WITH_BFD="yes" PYTHON_VERSION="3.5" WITH_LLVM="yes" WITH_SCIPY="yes"
56
compiler: clang
57
os: linux
58
addons:
bin/install_travis.sh
@@ -13,6 +13,10 @@ if [[ "${WITH_NUMPY}" != "no" ]]; then
13
export conda_pkgs="${conda_pkgs} numpy";
14
fi
15
16
+if [[ "${WITH_SCIPY}" == "yes" ]]; then
17
+ export conda_pkgs="${conda_pkgs} scipy";
18
+fi
19
+
20
if [[ "${WITH_SAGE}" == "yes" ]]; then
21
# This is split to avoid the 10 minute limit
22
conda install -q sagelib
0 commit comments