Skip to content

Commit

Permalink
update deps to correct scikit-learn
Browse files Browse the repository at this point in the history
  • Loading branch information
Tam-Pham committed Nov 27, 2020
1 parent c4e210e commit 39dce3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ yapf = "*"
bioread = "*"
mne = "*"
scipy = "*"
sklearn = "*"
scikit-learn = "*"
matplotlib = "*"
pyentrp = "*"
cvxopt = "*"
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

# -- Mock modules ---------------------------------------------
MOCK_MODULES = ['scipy', 'scipy.signal', 'scipy.ndimage', 'scipy.stats', 'scipy.misc', 'scipy.interpolate', 'scipy.sparse', 'scipy.linalg',
'scipy.spatial', 'scipy.special', 'scipy.integrate', 'scipy.cluster', 'scipy.optimize',
'scipy.spatial', 'scipy.special', 'scipy.integrate', 'scipy.cluster', 'scipy.optimize', "scikit-learn",
'sklearn', 'sklearn.neighbors', 'sklearn.mixture', 'sklearn.datasets', 'sklearn.metrics', 'sklearn.metrics.pairwise', 'sklearn.decomposition',
'sklearn.cluster', 'sklearn.cross_validation', 'mne', 'bioread', 'cvxopt', 'pywt']

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def find_version():


# Dependencies
requirements = ["numpy", "pandas", "scipy", "sklearn", "matplotlib"]
requirements = ["numpy", "pandas", "scipy", "scikit-learn", "matplotlib"]

# Optional Dependencies (only needed / downloaded for testing purposes, for instance to test against some other packages)
setup_requirements = ["pytest-runner", "numpy"]
Expand Down

0 comments on commit 39dce3d

Please sign in to comment.