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.
2 parents 9fa29a6 + b68df0f commit 3b1bfbaCopy full SHA for 3b1bfba
winpython/wppm.py
@@ -80,10 +80,10 @@ def get_installed_packages(self, update: bool = False) -> list[Package]:
80
self.pip = piptree.PipData()
81
else:
82
self.pip = piptree.PipData(utils.get_python_executable(self.target))
83
- pip_list = self.pip.pip_list()
+ pip_list = self.pip.pip_list(full=True)
84
85
# return a list of package objects
86
- return [Package(f"{i[0].replace('-', '_').lower()}-{i[1]}-py3-none-any.whl") for i in pip_list]
+ return [Package(f"{i[0].replace('-', '_').lower()}-{i[1]}-py3-none-any.whl", suggested_summary=i[2]) for i in pip_list]
87
88
def find_package(self, name: str) -> Package | None:
89
"""Find installed package by name."""
0 commit comments