1
- # sudo: false
2
- # travis-ci.org build & test configuration
3
1
language : python
4
2
5
3
matrix :
6
- include :
7
- - python : 2.7
8
- env : PYTHON=2.7 ROOT=5.34.32
9
- - python : 2.7
10
- env : PYTHON=2.7 ROOT=6.04
11
- - python : 3.4
12
- env : PYTHON=3.4 ROOT=5.34.32
13
- - python : 3.4
14
- env : PYTHON=3.4 ROOT=6.04
15
- - python : 3.5
16
- env : PYTHON=3.4 ROOT=5.34.32
17
- - python : 3.5
18
- env : PYTHON=3.4 ROOT=6.04
19
- - python : 3.6
20
- env : PYTHON=3.4 ROOT=5.34.32
21
- - python : 3.6
22
- env : PYTHON=3.4 ROOT=6.04
23
- # install: source ci/install.sh
24
- install :
25
- - if [ "${TRAVIS_OS_NAME}" == "osx" ]; then curl --silent http://repo.continuum.io/miniconda/Miniconda-latest-MacOSX-x86_64.sh -o miniconda.sh; fi
26
- - if [ "${TRAVIS_OS_NAME}" == "linux" ]; then wget -nv http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi
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
27
13
14
+ install :
15
+ - if [ "${TRAVIS_OS_NAME}" == "osx" ]; then curl --silent http://repo.continuum.io/miniconda/Miniconda-latest-MacOSX-x86_64.sh
16
+ -o miniconda.sh; fi
17
+ - if [ "${TRAVIS_OS_NAME}" == "linux" ]; then wget -nv http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
18
+ -O miniconda.sh; fi
28
19
- bash miniconda.sh -b -p $HOME/miniconda
29
20
- export PATH="$HOME/miniconda/bin:$PATH"
30
21
- hash -r
31
22
- conda config --set always_yes yes --set changeps1 no
32
23
- conda update -q conda
33
- - conda info -a # Useful for debugging any issues with conda
24
+ - conda info -a
34
25
- conda config --add channels http://conda.anaconda.org/NLeSC
35
26
- conda config --set show_channel_urls yes
36
27
- conda create -q -n testenv python=${PYTHON} root=${ROOT} rootpy pandas nose
@@ -41,7 +32,16 @@ install:
41
32
script : nosetests --with-coverage --cover-package=root_pandas
42
33
43
34
after_success :
44
- - time coveralls
35
+ - time coveralls
45
36
46
37
notifications :
47
- email : false
38
+ email : false
39
+
40
+ deploy :
41
+ provider : pypi
42
+ user : chrisburr
43
+ password :
44
+ secure : MyD2Q4zASzpXWaOBnbkGGm7luYB2SrrBVdX4faN0JmSmDcssn/exu2XDAIwhbZhg3uZC4bq7mBUpPiw/3Mx1f5kFgWlnjpnSRDaGhGLLc6rBp9Kqt6IOWcQ64yQ+S6LIuJ+tjbTMJAlNZgy3HDEwBWXKBvectWKJPZdVCenfMPA=
45
+ on :
46
+ tags : true
47
+ branch : master
0 commit comments