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 5f3f592 commit 0e30b3aCopy full SHA for 0e30b3a
news/11638.bugfix.rst
@@ -0,0 +1 @@
1
+Make ``pip show`` show the editable location if package is editable
src/pip/_internal/commands/show.py
@@ -119,7 +119,7 @@ def _get_requiring_packages(current_dist: BaseDistribution) -> Iterator[str]:
119
yield _PackageInfo(
120
name=dist.raw_name,
121
version=str(dist.version),
122
- location=dist.location or "",
+ location=str(dist.editable_project_location) if dist.editable else dist.location or "",
123
requires=requires,
124
required_by=required_by,
125
installer=dist.installer,
0 commit comments