forked from Unidata/netcdf4-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
43 lines (34 loc) · 634 Bytes
/
Copy path.travis.yml
File metadata and controls
43 lines (34 loc) · 634 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
language: python
sudo: false
addons:
apt:
packages:
- libhdf5-serial-dev
- netcdf-bin
- libnetcdf-dev
env:
global:
- DEPENDS="numpy cython setuptools==18.0.1"
- NO_NET=1
python:
- "2.7"
- "3.5"
- "3.6"
matrix:
allow_failures:
- python: "3.7-dev"
include:
# Absolute minimum dependencies.
- python: 2.7
env:
- DEPENDS="numpy==1.7.0 cython==0.19 ordereddict==1.1 setuptools==18.0"
notifications:
email: false
before_install:
- pip install $DEPENDS
install:
- python setup.py build
- python setup.py install
script:
- cd test
- python run_all.py