Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions sklearn/utils/_show_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def _get_deps_info():
"Cython",
"pandas",
"matplotlib",
"joblib",
]

def get_version(module):
Expand Down
2 changes: 2 additions & 0 deletions sklearn/utils/tests/test_show_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ def test_get_deps_info():
assert 'numpy' in deps_info
assert 'scipy' in deps_info
assert 'Cython' in deps_info
assert 'joblib' in deps_info
assert 'pandas' in deps_info
assert 'matplotlib' in deps_info

Expand All @@ -30,4 +31,5 @@ def test_show_versions_with_blas(capsys):
out, err = capsys.readouterr()
assert 'python' in out
assert 'numpy' in out
assert 'joblib' in out
assert 'BLAS' in out