@@ -2,7 +2,7 @@ language: c
2
2
3
3
env :
4
4
global :
5
- - OBSPY_VERSION=1.0.3
5
+ - OBSPY_VERSION=1.1.0
6
6
7
7
sudo : false
8
8
@@ -22,7 +22,7 @@ matrix:
22
22
env : PYTHON_VERSION=2.7 CONDA_PLATFORM=osx-64 CONDA_PYSUFFIX=py27
23
23
24
24
- os : linux
25
- env : PYTHON_VERSION=3.5 CONDA_PLATFORM=linux-64 CONDA_PYSUFFIX=py35
25
+ env : PYTHON_VERSION=3.6 CONDA_PLATFORM=linux-64 CONDA_PYSUFFIX=py36
26
26
- os : linux
27
27
env : PYTHON_VERSION=3.5 CONDA_PLATFORM=linux-32 CONDA_PYSUFFIX=py35 ARCHITECTURE_32BIT="True"
28
28
addons :
@@ -32,7 +32,7 @@ matrix:
32
32
- libstdc++6:i386
33
33
- gcc-multilib
34
34
- os : osx
35
- env : PYTHON_VERSION=3.5 CONDA_PLATFORM=osx-64 CONDA_PYSUFFIX=py35
35
+ env : PYTHON_VERSION=3.6 CONDA_PLATFORM=osx-64 CONDA_PYSUFFIX=py36
36
36
37
37
install :
38
38
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
@@ -48,10 +48,9 @@ install:
48
48
fi
49
49
- if [[ "$PYTHON_VERSION" == "2.7" ]]; then
50
50
export MINICONDA="Miniconda2-latest";
51
- elif [[ "$PYTHON_VERSION" == "3.5" ]]; then
52
- export MINICONDA="Miniconda3-3.5.5";
51
+ # elif [[ "$PYTHON_VERSION" == "3.5" ]]; then
53
52
else
54
- export MINICONDA="";
53
+ export MINICONDA="Miniconda3-3.5.5 ";
55
54
fi
56
55
- wget https://repo.continuum.io/miniconda/${MINICONDA}-${OS}-x86${ARCH}.sh -O miniconda.sh;
57
56
- bash miniconda.sh -b -p $HOME/miniconda
@@ -69,15 +68,15 @@ install:
69
68
- source activate test
70
69
# Useful for debugging any issues with conda
71
70
- conda info -a
71
+ - if [[ "$PYTHON_VERSION" == "2.7" ]]; then
72
+ conda install mock;
73
+ fi
72
74
- |
73
75
if [[ "$ARCHITECTURE_32BIT" == "True" ]]; then
74
- # linux32 doesnt have basemap-data-hires
75
- conda install obspy==${OBSPY_VERSION} ipython jupyter basemap nomkl sqlalchemy gdal
76
- elif [[ "$OS" == "Linux" ]]; then
77
- # only linux64 has geographiclib
78
- conda install obspy==${OBSPY_VERSION} ipython jupyter basemap nomkl sqlalchemy gdal basemap-data-hires geographiclib
76
+ # linux32 doesnt have basemap-data-hires and also no geographiclib
77
+ conda install obspy==${OBSPY_VERSION} ipython jupyter basemap nomkl sqlalchemy pyshp cryptography
79
78
else
80
- conda install obspy==${OBSPY_VERSION} ipython jupyter basemap nomkl sqlalchemy gdal basemap-data-hires
79
+ conda install obspy==${OBSPY_VERSION} ipython jupyter basemap nomkl sqlalchemy pyshp cryptography basemap-data-hires geographiclib
81
80
fi
82
81
# list package versions
83
82
- conda env export
0 commit comments