Skip to content

Commit c15e292

Browse files
author
David Stephens
committed
TST: Add Pandas 0.17.0rc1 to travis test
1 parent 8594382 commit c15e292

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ env:
77
- PYTHON=2.7 PANDAS=0.15.1
88
- PYTHON=3.3 PANDAS=0.14.1
99
- PYTHON=3.4 PANDAS=0.16.2
10+
- PYTHON=3.4 PANDAS=v0.17.0rc1
1011
- PYTHON=2.7 PANDAS=0.12.0
1112
- PYTHON=2.7 PANDAS=0.11.0
1213
- PYTHON=2.7 PANDAS=0.10.1
@@ -31,11 +32,11 @@ install:
3132
- export PATH="$HOME/miniconda/bin:$PATH"
3233
- hash -r
3334
- conda config --set always_yes yes --set changeps1 no
35+
- conda config --add channels pandas
3436
- conda update -q conda
3537
# Useful for debugging any issues with conda
3638
- conda info -a
3739

38-
# Replace dep1 dep2 ... with your dependencies
3940
- conda create -q -n test-environment python=$PYTHON pandas=$PANDAS nose coverage setuptools html5lib lxml beautiful-soup
4041
- source activate test-environment
4142
- pip install coveralls --quiet

pandas_datareader/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def DataReader(name, data_source=None, start=None, end=None,
9191
def Options(symbol, data_source=None):
9292
if data_source is None:
9393
warnings.warn("Options(symbol) is deprecated, use Options(symbol,"
94-
" data_source) instead", FutureWarning)
94+
" data_source) instead", FutureWarning, stacklevel=2)
9595
data_source = "yahoo"
9696
if data_source == "yahoo":
9797
return YahooOptions(symbol)

0 commit comments

Comments
 (0)