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.
2 parents 76ac4ac + 81a9228 commit 7232cb4Copy full SHA for 7232cb4
.travis.yml
@@ -4,6 +4,19 @@
4
# for it to be on multiple physical lines, so long as you remember: - There
5
# can't be any leading "-"s - All newlines will be removed, so use ";"s
6
language: python
7
+
8
+# Run jobs on container-based infrastructure, can be overridden per job
9
+sudo: false
10
11
+cache:
12
+ directories:
13
+ - $HOME/.cache/pip
14
15
+addons:
16
+ apt:
17
+ packages:
18
+ - libhdf5-serial-dev
19
20
env:
21
global:
22
- DEPENDS="numpy scipy matplotlib h5py"
@@ -46,9 +59,6 @@ before_install:
46
59
pip install coverage;
47
60
pip install coveralls;
48
61
fi
49
- - if [[ $DEPENDS == *h5py* ]]; then
50
- sudo apt-get install libhdf5-serial-dev;
51
- fi
52
62
# command to install dependencies
53
63
install:
54
64
- python setup.py install
0 commit comments