]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] Disable pip version check when upgrading certifi (GH-144632) (#144641)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 10 Feb 2026 03:24:17 +0000 (04:24 +0100)
committerGitHub <noreply@github.com>
Tue, 10 Feb 2026 03:24:17 +0000 (03:24 +0000)
(cherry picked from commit 80ba4e10f5070e6d2e35618e08057be44f913965)

Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Mac/BuildScript/resources/install_certificates.command

index 19b4adac07bb1d64eaf9b5028b9b4820c2148f3b..700eb462b68c187c162a65d5fc3ca42a8f5fb4dc 100755 (executable)
@@ -25,7 +25,8 @@ def main():
 
     print(" -- pip install --upgrade certifi")
     subprocess.check_call([sys.executable,
-        "-E", "-s", "-m", "pip", "install", "--upgrade", "certifi"])
+        "-E", "-s", "-m", "pip", "install", "--upgrade", "certifi",
+        "--disable-pip-version-check"])
 
     import certifi