Skip to content

Commit 4a1a41e

Browse files
committed
Install scipy in travis
1 parent 7039b11 commit 4a1a41e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ matrix:
5252
packages:
5353
- binutils-dev
5454
- g++-4.8
55-
- env: BUILD_TYPE="Debug" WITH_BFD="yes" PYTHON_VERSION="3.5" WITH_LLVM="yes"
55+
- env: BUILD_TYPE="Debug" WITH_BFD="yes" PYTHON_VERSION="3.5" WITH_LLVM="yes" WITH_SCIPY="yes"
5656
compiler: clang
5757
os: linux
5858
addons:

bin/install_travis.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ if [[ "${WITH_NUMPY}" != "no" ]]; then
1313
export conda_pkgs="${conda_pkgs} numpy";
1414
fi
1515

16+
if [[ "${WITH_SCIPY}" == "yes" ]]; then
17+
export conda_pkgs="${conda_pkgs} scipy";
18+
fi
19+
1620
if [[ "${WITH_SAGE}" == "yes" ]]; then
1721
# This is split to avoid the 10 minute limit
1822
conda install -q sagelib

0 commit comments

Comments
 (0)