From 6762a3d518504440e5510f1a7f6e5cfd9c538542 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Thu, 18 Jul 2019 10:13:56 +0530 Subject: [PATCH] Add link to pip's Python 2 deprecation message --- src/pip/_internal/cli/base_command.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pip/_internal/cli/base_command.py b/src/pip/_internal/cli/base_command.py index a13eb838a..448f31810 100644 --- a/src/pip/_internal/cli/base_command.py +++ b/src/pip/_internal/cli/base_command.py @@ -154,7 +154,9 @@ class Command(object): if sys.version_info[:2] == (2, 7): message = ( - "A future version of pip will drop support for Python 2.7." + "A future version of pip will drop support for Python 2.7. " + "More details about Python 2 support in pip, can be found at " + "https://pip.pypa.io/en/latest/development/release-process/#python-2-support." ) if platform.python_implementation() == "CPython": message = (