Skip to content

Commit afd3945

Browse files
committed
Mention PEP 508 URL dependencies as a replacement for dependency links
1 parent 2b3609a commit afd3945

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/pip/_internal/index.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,15 +167,15 @@ def get_formatted_locations(self):
167167
return "\n".join(lines)
168168

169169
def add_dependency_links(self, links):
170-
# # FIXME: this shouldn't be global list this, it should only
171-
# # apply to requirements of the package that specifies the
172-
# # dependency_links value
173-
# # FIXME: also, we should track comes_from (i.e., use Link)
170+
# FIXME: this shouldn't be global list this, it should only
171+
# apply to requirements of the package that specifies the
172+
# dependency_links value
173+
# FIXME: also, we should track comes_from (i.e., use Link)
174174
if self.process_dependency_links:
175175
deprecated(
176176
"Dependency Links processing has been deprecated and will be "
177177
"removed in a future release.",
178-
replacement=None,
178+
replacement="PEP 508 URL dependencies",
179179
gone_in="18.2",
180180
issue=4187,
181181
)

0 commit comments

Comments
 (0)