Skip to content

Commit

Permalink
added statsmodels back for seaborn
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkokotila committed May 6, 2018
1 parent a74d182 commit 5934430
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ numpy
pandas
IPython
patsy
statsmodels
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ def check_dependencies():
import geonamescache
except ImportError:
install_requires.append('geonamescache')

try:
import statsmodels
except ImportError:
install_requires.append('statsmodels')

return install_requires

Expand Down

0 comments on commit 5934430

Please sign in to comment.