From 57b4a11f24afbc30743a295c3b551b2c38332bfe Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Thu, 3 Feb 2022 19:37:08 -0500 Subject: [PATCH] Install Python wheel module to fix Windows CI This is needed since GitHub CI images update to windows-2022 base image, which notably changes Python version from 3.7 to 3.9 and requires building wheels for some of the packages not available on PyPI for this version. Closes #22091. --- build/tools/httpbin.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build/tools/httpbin.sh b/build/tools/httpbin.sh index a2d72d6a1b..73e8bd54f8 100644 --- a/build/tools/httpbin.sh +++ b/build/tools/httpbin.sh @@ -55,6 +55,7 @@ httpbin_launch() { # it may not support Python version that we actually have (this one # still works with 3.4, 20.0.1 is the last one to support 3.5). python3 -m pip install --user --upgrade pip==19.1.1 + python3 -m pip install --user wheel echo "Installing using `python3 -m pip --version`"