From 11a1566b2922c21d340ffc9dd579fff7810d6bc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Kone=C4=8Dn=C3=BD?= Date: Mon, 29 Aug 2022 18:34:27 +0200 Subject: [PATCH] [release-monitoring] Install newer Flask-Login package MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Flask-Login package currently available in F36 has issue with werkzeug package. This commit will use newer version of Flask-Login from PyPI to work around the issue. Signed-off-by: Michal Konečný --- .../release-monitoring/templates/buildconfig.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/roles/openshift-apps/release-monitoring/templates/buildconfig.yml b/roles/openshift-apps/release-monitoring/templates/buildconfig.yml index be6dc79448..cf7e0f5b20 100644 --- a/roles/openshift-apps/release-monitoring/templates/buildconfig.yml +++ b/roles/openshift-apps/release-monitoring/templates/buildconfig.yml @@ -44,8 +44,10 @@ items: python3-wtforms && \ dnf autoremove -y && \ dnf clean all -y - # Install newer version of sphinx than what is available in Fedora 36 - RUN pip install sphinx==5.1.1 + # Install newer version of flask-login than what is available in Fedora 36 + # It has issue with werkzeug package available in Fedora + # See https://github.com/maxcountryman/flask-login/pull/691 for more info + RUN pip install Flask-Login=0.6.2 RUN git clone https://github.com/fedora-infra/anitya.git && \ pushd anitya && \ {% if env == 'staging' %}