[release-monitoring] Install newer Flask-Login package

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ý <mkonecny@redhat.com>
This commit is contained in:
Michal Konečný 2022-08-29 18:34:27 +02:00
parent 465c428667
commit 11a1566b29

View file

@ -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' %}