[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:
parent
c20364bc7a
commit
fba95afaa4
1 changed files with 2 additions and 1 deletions
|
@ -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 && \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue