This repository was archived by the owner on Jan 9, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -12,20 +12,26 @@ matrix:
12
12
env : PYTHON=3.4 ROOT=5.34.32
13
13
- python : 3.4
14
14
env : PYTHON=3.4 ROOT=6.04
15
- allow_failures :
16
- - python : 3.4
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
17
23
# install: source ci/install.sh
18
24
install :
19
25
- if [ "${TRAVIS_OS_NAME}" == "osx" ]; then curl --silent http://repo.continuum.io/miniconda/Miniconda-latest-MacOSX-x86_64.sh -o miniconda.sh; fi
20
26
- if [ "${TRAVIS_OS_NAME}" == "linux" ]; then wget -nv http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi
21
-
27
+
22
28
- bash miniconda.sh -b -p $HOME/miniconda
23
29
- export PATH="$HOME/miniconda/bin:$PATH"
24
30
- hash -r
25
31
- conda config --set always_yes yes --set changeps1 no
26
32
- conda update -q conda
27
33
- conda info -a # Useful for debugging any issues with conda
28
- - conda config --add channels http://conda.anaconda.org/NLeSC
34
+ - conda config --add channels http://conda.anaconda.org/NLeSC
29
35
- conda config --set show_channel_urls yes
30
36
- conda create -q -n testenv python=${PYTHON} root=${ROOT} rootpy pandas nose
31
37
- export CONDA_ENV_PATH=$HOME/miniconda/envs/testenv
Original file line number Diff line number Diff line change @@ -20,6 +20,14 @@ These include
20
20
- Selecting several columns at once using ` * ` globbing and ` {A,B} ` shell patterns.
21
21
- Flattening source files containing arrays by storing one array element each in the DataFrame, duplicating any scalar variables.
22
22
23
+ Python versions supported:
24
+
25
+ [ ![ ] ( https://img.shields.io/badge/python-2.7-blue.svg )] ( https://badge.fury.io/py/root_pandas )
26
+ [ ![ ] ( https://img.shields.io/badge/python-3.4-blue.svg )] ( https://badge.fury.io/py/root_pandas )
27
+ [ ![ ] ( https://img.shields.io/badge/python-3.5-blue.svg )] ( https://badge.fury.io/py/root_pandas )
28
+ [ ![ ] ( https://img.shields.io/badge/python-3.6-blue.svg )] ( https://badge.fury.io/py/root_pandas )
29
+
30
+
23
31
## Reading ROOT files
24
32
25
33
This is how you can read the contents of a ROOT file into a DataFrame:
You can’t perform that action at this time.
0 commit comments