From e48a0cb7cba70d7184f7a08b49163cf5a6451b61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Gia=20Phong?= Date: Sat, 1 Aug 2020 16:59:07 +0700 Subject: [PATCH] Remove no-longer-used messages --- src/pip/_internal/commands/install.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/pip/_internal/commands/install.py b/src/pip/_internal/commands/install.py index 8c2c32fd4..77ec210d6 100644 --- a/src/pip/_internal/commands/install.py +++ b/src/pip/_internal/commands/install.py @@ -21,7 +21,6 @@ from pip._internal.locations import distutils_scheme from pip._internal.operations.check import check_install_conflicts from pip._internal.req import install_given_reqs from pip._internal.req.req_tracker import get_requirement_tracker -from pip._internal.utils.datetime import today_is_later_than from pip._internal.utils.deprecation import deprecated from pip._internal.utils.distutils_args import parse_distutils_args from pip._internal.utils.filesystem import test_writable_dir @@ -558,19 +557,6 @@ class InstallCommand(RequirementCommand): "your packages with the new resolver before it becomes the " "default.\n" ) - elif not today_is_later_than(year=2020, month=7, day=31): - # NOTE: trailing newlines here are intentional - parts.append( - "Pip will install or upgrade your package(s) and its " - "dependencies without taking into account other packages you " - "already have installed. This may cause an uncaught " - "dependency conflict.\n" - ) - form_link = "https://forms.gle/cWKMoDs8sUVE29hz9" - parts.append( - "If you would like pip to take your other packages into " - "account, please tell us here: {}\n".format(form_link) - ) # NOTE: There is some duplication here, with commands/check.py for project_name in missing: