summaryrefslogtreecommitdiff
path: root/dev-python/pip/files/pip-19.1-disable-version-check.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pip/files/pip-19.1-disable-version-check.patch')
-rw-r--r--dev-python/pip/files/pip-19.1-disable-version-check.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-python/pip/files/pip-19.1-disable-version-check.patch b/dev-python/pip/files/pip-19.1-disable-version-check.patch
deleted file mode 100644
index a46a47f0fc68..000000000000
--- a/dev-python/pip/files/pip-19.1-disable-version-check.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Don't check for new versions of pip.
-
---- pip-19.1/src/pip/_internal/cli/base_command.py
-+++ pip-19.1/src/pip/_internal/cli/base_command.py
-@@ -213,12 +213,8 @@ class Command(object):
-
- return UNKNOWN_ERROR
- finally:
-- allow_version_check = (
-- # Does this command have the index_group options?
-- hasattr(options, "no_index") and
-- # Is this command allowed to perform this check?
-- not (options.disable_pip_version_check or options.no_index)
-- )
-+ # Disabled on Gentoo
-+ allow_version_check = False
- # Check if we're using the latest version of pip available
- if allow_version_check:
- session = self._build_session(