Skip to content

Commit

Permalink
Merge pull request #5726 from pradyunsg/deprecation/dependency-links
Browse files Browse the repository at this point in the history
Mention PEP 508 URL dependencies as a replacement for dependency links
  • Loading branch information
pradyunsg committed Aug 24, 2018
2 parents 2b3609a + afd3945 commit eeacf0e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pip/_internal/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,15 +167,15 @@ def get_formatted_locations(self):
return "\n".join(lines)

def add_dependency_links(self, links):
# # FIXME: this shouldn't be global list this, it should only
# # apply to requirements of the package that specifies the
# # dependency_links value
# # FIXME: also, we should track comes_from (i.e., use Link)
# FIXME: this shouldn't be global list this, it should only
# apply to requirements of the package that specifies the
# dependency_links value
# FIXME: also, we should track comes_from (i.e., use Link)
if self.process_dependency_links:
deprecated(
"Dependency Links processing has been deprecated and will be "
"removed in a future release.",
replacement=None,
replacement="PEP 508 URL dependencies",
gone_in="18.2",
issue=4187,
)
Expand Down

0 comments on commit eeacf0e

Please sign in to comment.