Issue #24267 - Ensure that pip version check is disabled on uninstall
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py
index 4244299..0843b54 100644
--- a/Lib/ensurepip/__init__.py
+++ b/Lib/ensurepip/__init__.py
@@ -147,7 +147,7 @@
     _disable_pip_configuration_settings()
 
     # Construct the arguments to be passed to the pip command
-    args = ["uninstall", "-y"]
+    args = ["uninstall", "-y", "--disable-pip-version-check"]
     if verbosity:
         args += ["-" + "v" * verbosity]