From 501a290f81a4ac32cee6d10e2468b61c84fcb066 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 16 Apr 2023 09:56:26 +0200 Subject: [PATCH] Pin pip also for windows installs --- build_helpers/install_windows.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_helpers/install_windows.ps1 b/build_helpers/install_windows.ps1 index 2fc21d317..cf6fbdf07 100644 --- a/build_helpers/install_windows.ps1 +++ b/build_helpers/install_windows.ps1 @@ -1,7 +1,7 @@ # Downloads don't work automatically, since the URL is regenerated via javascript. # Downloaded from https://www.lfd.uci.edu/~gohlke/pythonlibs/#ta-lib -python -m pip install --upgrade pip wheel +python -m pip install --upgrade pip==23.0.1 wheel $pyv = python -c "import sys; print(f'{sys.version_info.major}.{sys.version_info.minor}')"