We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caf29c8 commit 850c257Copy full SHA for 850c257
1 file changed
winpython/wppm.py
@@ -326,8 +326,9 @@ def get_installed_packages(self):
326
wininst.append(pack)
327
# Include package installed via pip (not via WPPM)
328
try:
329
- if os.path.dirname(sys.executable) == self.target:
+ if os.path.dirname(sys.executable) == self.target and 1==2:
330
# direct way: we interrogate ourself
331
+ # avoid as it work only once (bug): result is never updated
332
import pip
333
pip_list = [(i.key, i.version)
334
for i in pip.get_installed_distributions()]
0 commit comments