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

Remove the temporary shim

This commit is contained in:
Donald Stufft 2015-04-07 07:16:06 -04:00
parent d12060bd45
commit 92a15cd28b

View file

@ -116,17 +116,6 @@ class InstallRequirement(object):
self.isolated = isolated
@property
def url(self):
warnings.warn(
"The InstallRequirement.url attribute has been removed and should "
"not be used. It was temporary left here as a shim for projects "
"which used it even though it was not a public API.",
RemovedInPip7Warning,
)
return self.link.url
@classmethod
def from_editable(cls, editable_req, comes_from=None, default_vcs=None,
isolated=False):