Skip to content

Commit 08ce3b8

Browse files
committed
initial commit, extracted from pandas.io
0 parents  commit 08ce3b8

21 files changed

+27655
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
__pycache__
2+
*.pyc

.travis.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
language: python
2+
3+
env:
4+
- PYTHON=2.6 PANDAS=v0.13.1
5+
- PYTHON=2.7 PANDAS=v0.15.1
6+
- PYTHON=3.3 PANDAS=v0.14.1
7+
- PYTHON=3.4 PANDAS=v0.15.1
8+
9+
install:
10+
- sudo apt-get update
11+
# You may want to periodically update this, although the conda update
12+
# conda line below will keep everything up-to-date. We do this
13+
# conditionally because it saves us some downloading if the version is
14+
# the same.
15+
- if [[ "$PYTHON" == "2.7" ]]; then
16+
wget http://repo.continuum.io/miniconda/Miniconda-3.4.2-Linux-x86_64.sh -O miniconda.sh;
17+
else
18+
wget http://repo.continuum.io/miniconda/Miniconda3-3.4.2-Linux-x86_64.sh -O miniconda.sh;
19+
fi
20+
- bash miniconda.sh -b -p $HOME/miniconda
21+
- export PATH="$HOME/miniconda/bin:$PATH"
22+
- hash -r
23+
- conda config --set always_yes yes --set changeps1 no
24+
- conda update -q conda
25+
# Useful for debugging any issues with conda
26+
- conda info -a
27+
28+
# Replace dep1 dep2 ... with your dependencies
29+
- conda create -q -n test-environment python=$PYTHON pandas=$PANDAS
30+
- source activate test-environment
31+
- python setup.py install
32+
33+
script:
34+
- py.test --cov pandas_data_readers -v --cov-report term-missing
35+
36+
after_success:
37+
- coveralls
38+

pandas_data_readers/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)