Skip to content

Commit

Permalink
Merge branch 'pr/181'
Browse files Browse the repository at this point in the history
  • Loading branch information
twiecki committed Nov 9, 2015
2 parents 95f319c + 17c8000 commit 7589050
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ before_install:
- conda info -a

install:
- conda create -q -n testenv --yes python=$TRAVIS_PYTHON_VERSION ipython pyzmq numpy scipy nose matplotlib pandas Cython patsy statsmodels flake8 scikit-learn seaborn runipy pytables networkx
- conda create -q -n testenv --yes python=$TRAVIS_PYTHON_VERSION ipython pyzmq numpy scipy nose matplotlib pandas Cython patsy statsmodels flake8 scikit-learn seaborn runipy pytables networkx pandas-datareader
- source activate testenv
- pip install nose_parameterized contextlib2 logbook==0.10.1
- pip install --no-deps git+https://github.com/quantopian/zipline
Expand Down
4 changes: 3 additions & 1 deletion pyfolio/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@

import pandas as pd
import numpy as np
import pandas.io.data as web

from pandas_datareader import data as web

from pandas.tseries.offsets import BDay

import zipfile
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@
'scikit-learn>=0.15.0',
'scipy>=0.14.0',
'seaborn>=0.6.0',
'statsmodels>=0.5.0']
'statsmodels>=0.5.0',
'pandas-datareader>=0.2',
]

extras_reqs = {
'bayesian': ['pymc3']
Expand Down

0 comments on commit 7589050

Please sign in to comment.