10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24aa6b8 commit f456a40Copy full SHA for f456a40
sklearn/utils/_show_versions.py
@@ -103,17 +103,14 @@ def show_versions():
103
deps_info = _get_deps_info()
104
blas_info = _get_blas_info()
105
106
- print('\nSystem')
107
- print('------')
+ print('\nSystem:')
108
for k, stat in sys_info.items():
109
print("{k:>10}: {stat}".format(k=k, stat=stat))
110
111
- print('\nBLAS')
112
- print('----')
+ print('\nBLAS:')
113
for k, stat in blas_info.items():
114
115
116
- print('\nPython deps')
117
- print('-----------')
+ print('\nPython deps:')
118
for k, stat in deps_info.items():
119
0 commit comments