[release-monitoring] Fix the poetry export

The poetry export failed to be installed by pip. Let's try to create the
requirements.txt without hashes.

Signed-off-by: Michal Konečný <mkonecny@redhat.com>
This commit is contained in:
Michal Konečný 2022-09-27 10:56:27 +02:00
parent c20364bc7a
commit fba95afaa4

View file

@ -55,7 +55,8 @@ items:
pushd anitya && \
{% if env == 'staging' %}
git checkout staging && \
poetry export -f requirements.txt | pip-3 install -r /dev/stdin && \
poetry export -f requirements.txt --output requirements.txt --without-hashes && \
pip-3 install -r requirements.txt && \
{% else %}
git checkout production && \
python3 setup.py install && \