8000
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 15716da commit 955b3edCopy full SHA for 955b3ed
sklearn/utils/_show_versions.py
@@ -51,6 +51,7 @@ def _get_deps_info():
51
"pandas",
52
"matplotlib",
53
"joblib",
54
+ "threadpoolctl"
55
]
56
57
def get_version(module):
@@ -87,7 +88,7 @@ def show_versions():
87
88
89
print('\nPython dependencies:')
90
for k, stat in deps_info.items():
- print("{k:>10}: {stat}".format(k=k, stat=stat))
91
+ print("{k:>13}: {stat}".format(k=k, stat=stat))
92
- print("\n{k:>10}: {stat}".format(k="Built with OpenMP",
93
- stat=_openmp_parallelism_enabled()))
+ print("\n{k}: {stat}".format(k="Built with OpenMP",
94
+ stat=_openmp_parallelism_enabled()))
0 commit comments