Skip to content

Commit 3acba99

Browse files
committed
fix run function use
1 parent f88b904 commit 3acba99

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

winpython/data/packages.ini

+9
Original file line numberDiff line numberDiff line change
@@ -2500,3 +2500,12 @@ description = Backport of pathlib-compatible object wrapper for zip files
25002500
[z3-solver]
25012501
description = an efficient SMT solver library
25022502

2503+
[umap-learn]
2504+
description = Uniform Manifold Approximation and Projection
2505+
2506+
[tensorboard-plugin-wit]
2507+
description = What-If Tool TensorBoard plugin.
2508+
2509+
[tbb]
2510+
description = Intel(R) Threading Building Blocks
2511+

winpython/wppm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def get_official_description(name):
5656
return ''
5757
try:
5858
# .run work when .popen fils when no internet
59-
pip_res = (utils.exec_run_cmd(pip_ask, dir_path)+'\n').splitlines()
59+
pip_res = (utils.exec_run_cmd(pip_ask)+'\n').splitlines()
6060
pip_filter = [l for l in pip_res if this + " (" ==
6161
normalize(l[:this_len])+l[this_len:this_len+2]]
6262
pip_desc = (pip_filter[0][len(this)+1:]).split(" - ", 1)[1]

0 commit comments

Comments
 (0)