From fb2a04e4687de7990f57fa8f036e512904c480f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Fri, 26 Apr 2024 22:10:11 +0200 Subject: [PATCH] fix install on bookworm --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 7efe5d0..1e9d9bb 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -39,7 +39,7 @@ install_dependance() { chown -R $seafile_user:$seafile_user $final_path # Note that we install imageio to force the dependance, without this imageio 2.8 is installed and it need python3.5 - sudo -u $seafile_user pip3 install --user --no-warn-script-location --upgrade future mysqlclient pymysql 'Pillow<10.0.0' pylibmc captcha jinja2 sqlalchemy psd-tools django-pylibmc django-simple-captcha python3-ldap + sudo -u $seafile_user pip3 install --user --no-warn-script-location --upgrade --break-system-packages future mysqlclient pymysql 'Pillow<10.0.0' pylibmc captcha jinja2 sqlalchemy psd-tools django-pylibmc django-simple-captcha python3-ldap # TODO add dependance when upgrade to seafile 8: django==2.2.* ynh_del_swap }