requirements: Upgrade Python requirements.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2023-04-25 17:52:20 -07:00
committed by Anders Kaseorg
parent f74cfe0ed5
commit 03b3c8522d
12 changed files with 1131 additions and 427 deletions

View File

@@ -394,9 +394,9 @@ def main(options: argparse.Namespace) -> NoReturn:
# Here we install node.
proxy_env = [
"env",
"http_proxy=" + os.environ.get("http_proxy", ""),
"https_proxy=" + os.environ.get("https_proxy", ""),
"no_proxy=" + os.environ.get("no_proxy", ""),
"http_proxy=" + os.environ.get("http_proxy", ""), # noqa: SIM112
"https_proxy=" + os.environ.get("https_proxy", ""), # noqa: SIM112
"no_proxy=" + os.environ.get("no_proxy", ""), # noqa: SIM112
]
run_as_root([*proxy_env, "scripts/lib/install-node"], sudo_args=["-H"])