@@ -2,14 +2,9 @@ language: python
2
2
3
3
matrix :
4
4
include :
5
- - python : 2.7
6
- env : PYTHON=2.7 ROOT=5.34.32
7
- - python : 2.7
8
- env : PYTHON=2.7 ROOT=6.04
9
- - python : 3.4
10
- env : PYTHON=3.4 ROOT=5.34.32
11
- - python : 3.4
12
- env : PYTHON=3.4 ROOT=6.04
5
+ - env : PYTHON=2.7
6
+ - env : PYTHON=3.6
7
+ - env : PYTHON=3.7
13
8
14
9
install :
15
10
- if [ "${TRAVIS_OS_NAME}" == "osx" ]; then curl --silent http://repo.continuum.io/miniconda/Miniconda-latest-MacOSX-x86_64.sh
@@ -20,14 +15,17 @@ install:
20
15
- export PATH="$HOME/miniconda/bin:$PATH"
21
16
- hash -r
22
17
- conda config --set always_yes yes --set changeps1 no
23
- - conda update -q conda
24
- - conda info -a
25
- - conda config --add channels http://conda.anaconda.org/NLeSC
26
- - conda config --set show_channel_urls yes
27
- - conda create -q -n testenv python=${PYTHON} root=${ROOT} pandas nose
18
+ - conda config --add channels conda-forge/label/gcc7
19
+ - conda config --add channels chrisburr
20
+ - conda create -q -n testenv python=${PYTHON} nomkl root pandas nose
28
21
- export CONDA_ENV_PATH=$HOME/miniconda/envs/testenv
29
22
- source activate testenv
30
- - pip install --user --no-binary=root_numpy root_numpy==4.4.1 rootpy
23
+ - if [ "${PYTHON}" == "3.7" ]; then
24
+ pip install git+https://github.com/scikit-hep/root_numpy.git;
25
+ else
26
+ pip install root_numpy;
27
+ fi
28
+ - pip install root_numpy rootpy
31
29
- pip install coverage coveralls
32
30
33
31
script : nosetests --with-coverage --cover-package=root_pandas
0 commit comments