From 939ed387680fca22c9e633bdd8ee32fbe2c2bfd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Palancher?= Date: Wed, 4 Dec 2024 08:51:56 +0100 Subject: [PATCH] ci: install Werkzeug from el8 for Python 3.6 Install Werkzeug library in the version distributed in el8, in order to be as close as possible to this environment and reproduce #419. This also requires to downgrade Flask to version <1.0 to avoid pulling more recent version of Werkzeug. --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f526eb4b..51f31cef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,8 +56,10 @@ jobs: pip install PyYAML==5.4.1 echo "::notice::Installing PyJWT (old version)" pip install PyJWT==2.4.0 + echo "::notice::Installing Werkzeug (old version)" + pip install "Werkzeug<0.13" echo "::notice::Installing Flask (old version)" - pip install "flask<2.1.0" + pip install "flask<1.0" echo "::notice::Installing requests (old version)" pip install "requests<2.26.0" echo "::notice::Installing pyasn1 (old version)"