From fd1b7dda95bed9a51a0a17f2c5f619cc9eb35750 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 this environment as possible and try reproduce #419. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f526eb4b..1be3a98c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,6 +56,8 @@ 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" echo "::notice::Installing requests (old version)"