Skip to content

Commit 1ac95d3

Browse files
committed
make install of Pillow less verbose and travis config clean up and test with python 2.5
1 parent a240027 commit 1ac95d3

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.travis.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,19 @@
33

44
language: python
55
python:
6-
- "2.6"
6+
- "2.5"
77
# - "2.7"
88
# - "3.2"
99
# command to install dependencies
1010
before_install:
1111
#zlib1g-dev is needed to allow PIL to uncompress the dataset.
1212
- sudo apt-get install -qq libatlas3gf-base libatlas-dev zlib1g-dev zip unzip zlibc libzip-dev libjpeg8 libjpeg62-dev libfreetype6 libfreetype6-dev
13-
# - sudo ln -s /usr/lib/x86_64-linux-gnu/libjpeg.so /usr/lib
14-
# - sudo ln -s /usr/lib/x86_64-linux-gnu/libfreetype.so /usr/lib
15-
# - sudo ln -s /usr/lib/x86_64-linux-gnu/libz.so /usr/lib
1613

1714
install:
18-
#If we don't install numpy before SciPy 0.10.1, the SciPy installations fails.
1915
- "pip install -q numpy --use-mirrors"
20-
# - "pip install PIL --use-mirrors"
21-
- "pip install Pillow --use-mirrors"
22-
# - "pip install --no-deps Theano --use-mirrors"
16+
# Use Pillow instead of PIL as it is better packaged
17+
- "pip install -q Pillow --use-mirrors"
18+
#If we don't install numpy before SciPy 0.10.1, the SciPy installations fails.
2319
# - "pip install -q scipy --use-mirrors"
2420
- "pip install --no-deps git+git://github.com/Theano/Theano.git"
2521
script:

0 commit comments

Comments
 (0)