From 5fd6aa5447859e9266ed42a6f9b0583281e62c63 Mon Sep 17 00:00:00 2001 From: Marek Mihok Date: Thu, 14 Mar 2024 11:45:42 +0100 Subject: [PATCH] ci: Add urllib3 to windows python tests (#2290) --- setup.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.ps1 b/setup.ps1 index c68818b288..5b24e5a0c8 100644 --- a/setup.ps1 +++ b/setup.ps1 @@ -11,7 +11,7 @@ Set-Location py python -m venv venv .\venv\Scripts\python -m pip install --upgrade pip .\venv\Scripts\python -m pip install --editable h2o_wave -.\venv\Scripts\pip install httpx typing_extensions +.\venv\Scripts\pip install httpx urllib3 typing_extensions echo "# Generated in hatch_build.py\n__platform__ = 'linux'\n__arch__ = 'amd64'" > h2o_wave/h2o_wave/metadata.py if ($LastExitCode -ne 0) { exit $LastExitCode }