https://github.com/python/cpython/commit/de105e78c71180fe473688b3cd5c38e609a78f61 commit: de105e78c71180fe473688b3cd5c38e609a78f61 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: ned-deily <[email protected]> date: 2026-02-09T22:22:12-05:00 summary:
[3.13] Disable pip version check when upgrading certifi (GH-144632) (#144640) (cherry picked from commit 80ba4e10f5070e6d2e35618e08057be44f913965) Co-authored-by: Hugo van Kemenade <[email protected]> files: M Mac/BuildScript/resources/install_certificates.command diff --git a/Mac/BuildScript/resources/install_certificates.command b/Mac/BuildScript/resources/install_certificates.command index 19b4adac07bb1d..700eb462b68c18 100755 --- a/Mac/BuildScript/resources/install_certificates.command +++ b/Mac/BuildScript/resources/install_certificates.command @@ -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 _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
