--- a/src/eric7/PipInterface/Pip.py Mon Jun 24 16:59:07 2024 +0200 +++ b/src/eric7/PipInterface/Pip.py Tue Jun 25 12:30:47 2024 +0200 @@ -1017,7 +1017,9 @@ start.lower() for start in packageStarts if bool(start) ) filteredPackages = [ - p for p in packages if p.lower().startswith(filterStrings) + (p, packages[p][0], packages[p][1]) + for p in packages + if p.lower().startswith(filterStrings) ] else: filteredPackages = []