From 55c704a1b404bb302f2fb0a8d9589ab841fcfc92 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 23 Aug 2023 23:16:56 +0200 Subject: [PATCH] Pin httpbin to the previously working 0.7.0 version The recently released 0.10.0 doesn't seem to have any actual changes but has new dependencies which broke the previously working builds. Closes #23800. --- 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 dc75fd61b7..b34a037792 100644 --- a/build/tools/httpbin.sh +++ b/build/tools/httpbin.sh @@ -13,7 +13,7 @@ httpbin_launch() { # working version. pip_explicit_deps='Flask==2.0.3 Werkzeug==2.0.3' - python3 -m pip install $pip_explicit_deps httpbin --user + python3 -m pip install $pip_explicit_deps 'httpbin==0.7.0' --user python3 -m httpbin.core --port 50500 2>&1 >httpbin.log & WX_TEST_WEBREQUEST_URL="http://localhost:50500" }