1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

No need to think about editable for installed dist

This commit is contained in:
Tzu-ping Chung 2020-04-04 21:53:04 +08:00
parent aaa82cddcc
commit aead201fda

View file

@ -77,7 +77,6 @@ def make_install_req_from_editable(link, parent):
def make_install_req_from_dist(dist, parent):
# type: (Distribution, InstallRequirement) -> InstallRequirement
# TODO: Do we need to support editables?
ireq = install_req_from_line(
"{}=={}".format(
canonicalize_name(dist.project_name),