From 54986685140021f68e57e5fefc1eeffd688df3f9 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 4 Apr 2021 01:38:03 +0200 Subject: [PATCH] Don't use broken pip version 20.0 Pip continues to impress with version 20 being completely broken and not running at all. Try the next one, which is supposed to fix this bug. --- build/tools/httpbin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tools/httpbin.sh b/build/tools/httpbin.sh index f4387842d1..834e7df0fb 100644 --- a/build/tools/httpbin.sh +++ b/build/tools/httpbin.sh @@ -43,7 +43,7 @@ httpbin_launch() { # # However don't upgrade to a version which is too new because then # it may not support Python version that we actually have. - python3 -m pip install --upgrade pip==20 + python3 -m pip install --upgrade pip==20.0.1 ;; esac