fix orchestra-admin

This commit is contained in:
Cayo Puigdefabregas 2023-09-27 14:01:43 +02:00
parent 69c8a3d918
commit 99d31d5030
1 changed files with 2 additions and 2 deletions

View File

@ -150,9 +150,9 @@ function install_requirements () {
fi
# cracklib and lxml are excluded on the requirements.txt because they need unconvinient system dependencies
PIP="$(wget http://git.io/orchestra-requirements.txt -O - | tr '\n' ' ') \
PIP="$(cat requirements.txt -O - | tr '\n' ' ') \
cracklib \
lxml==3.3.5"
lxml==4.9.3"
if $testing; then
PIP="${PIP} \
selenium \