@@ -6,29 +6,24 @@ language: python
6
6
7
7
matrix :
8
8
include :
9
- - python : 2.7
10
- env : PYTHON=2.7 ROOT=5.34.32
11
- - python : 2.7
12
- env : PYTHON=2.7 ROOT=6.04
13
- - python : 3.4
14
- env : PYTHON=3.4 ROOT=5.34.32
15
- - python : 3.4
16
- env : PYTHON=3.4 ROOT=6.04 COVERAGE=1
9
+ - env : PYTHON=2.7 COVERAGE=1
10
+ - env : PYTHON=3.6 COVERAGE=1
11
+ - env : PYTHON=3.7 COVERAGE=1
17
12
18
13
# install: source ci/install.sh
19
14
install :
20
15
- if [ "${TRAVIS_OS_NAME}" == "osx" ]; then curl --silent http://repo.continuum.io/miniconda/Miniconda-latest-MacOSX-x86_64.sh -o miniconda.sh; fi
21
16
- if [ "${TRAVIS_OS_NAME}" == "linux" ]; then wget -nv http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi
22
-
17
+
23
18
- bash miniconda.sh -b -p $HOME/miniconda
24
19
- export PATH="$HOME/miniconda/bin:$PATH"
25
20
- hash -r
26
21
- conda config --set always_yes yes --set changeps1 no
27
22
- conda update -q conda
28
23
- conda info -a # Useful for debugging any issues with conda
29
- - conda config --add channels http:// conda.anaconda.org/NLeSC
30
- - conda config --set show_channel_urls yes
31
- - conda create -q -n testenv python=${PYTHON} root=${ROOT} numpy nose sphinx
24
+ - conda config --add channels conda-forge/label/gcc7
25
+ - conda config --add channels chrisburr
26
+ - conda create -q -n testenv python=${PYTHON} nomkl root nose sphinx
32
27
- export CONDA_ENV_PATH=$HOME/miniconda/envs/testenv
33
28
- source activate testenv
34
29
- pip install coverage coveralls
0 commit comments