Skip to content

Commit

Permalink
MAINT pass install_requires to setup
Browse files Browse the repository at this point in the history
  closes #133
  • Loading branch information
superbobry committed Jul 8, 2016
1 parent b8391fc commit 2be3164
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def get_info(name):

VERSION = hmmlearn.__version__

install_requires = ["sklearn>=0.16"]
install_requires = ["scikit-learn>=0.16"]
tests_require = install_requires + ["pytest"]
docs_require = install_requires + [
"Sphinx", "sphinx-gallery", "numpydoc", "Pillow", "matplotlib"
Expand All @@ -69,6 +69,7 @@ def get_info(name):
extra_compile_args=["-O3"],
**get_info("npymath"))
],
install_requires=install_requires,
tests_require=tests_require,
extras_require={
"tests": tests_require,
Expand Down

0 comments on commit 2be3164

Please sign in to comment.