Skip to content

Commit 9eabc00

Browse files
committed
get scipy installed.
1 parent 2f3696c commit 9eabc00

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.travis.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
# After changing this file, check it on:
22
# http://lint.travis-ci.org/
33

4-
language: python
5-
python:
6-
- "2.5"
4+
#We can't get scipy installed with the python language
5+
#So we will use the system python from the c language.
6+
language: c
7+
#language: python
8+
#python:
9+
# - "2.5"
710
# - "2.7"
811
# - "3.2"
912
# command to install dependencies
1013
before_install:
1114
#zlib1g-dev is needed to allow PIL to uncompress the dataset.
12-
- sudo apt-get install -qq libatlas3gf-base libatlas-dev zlib1g-dev zip unzip zlibc libzip-dev libjpeg8 libjpeg62-dev libfreetype6 libfreetype6-dev
15+
- sudo apt-get install -qq libatlas3gf-base libatlas-dev zlib1g-dev zip unzip zlibc libzip-dev libjpeg8 libjpeg62-dev libfreetype6 libfreetype6-dev python-numpy python-scipy python-pip python-nose python-yaml pyflakes python-imaging
1316

1417
install:
15-
- "pip install -q numpy --use-mirrors"
18+
# - "pip install -q numpy --use-mirrors"
1619
# Use Pillow instead of PIL as it is better packaged
17-
- "pip install -q Pillow --use-mirrors"
20+
# - "pip install -q Pillow --use-mirrors"
1821
#If we don't install numpy before SciPy 0.10.1, the SciPy installations fails.
1922
# - "pip install -q scipy --use-mirrors"
2023
- "pip install --no-deps git+git://github.com/Theano/Theano.git"

0 commit comments

Comments
 (0)