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 4994a8d commit b68df0fCopy full SHA for b68df0f
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