mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
Fix dependance for buster
This commit is contained in:
parent
2574d127bc
commit
67e0869de2
1 changed files with 5 additions and 1 deletions
|
@ -112,7 +112,11 @@ extract_source() {
|
||||||
}
|
}
|
||||||
|
|
||||||
install_dependance() {
|
install_dependance() {
|
||||||
ynh_install_app_dependencies python2.7 python-pip python-setuptools python-simplejson python-imaging python-mysqldb python-flup expect python-requests python-dev
|
if [ "$(lsb_release --codename --short)" == "stretch" ]; then
|
||||||
|
ynh_install_app_dependencies python2.7 python-pip python-setuptools python-simplejson python-imaging python-mysqldb python-flup expect python-requests python-dev
|
||||||
|
else
|
||||||
|
ynh_install_app_dependencies python2.7 python-pip python-setuptools python-simplejson python-pil python-mysqldb python-flup expect python-requests python-dev
|
||||||
|
fi
|
||||||
# Upgrade setuptools for jessie because the new moviepy package is not compatible with setuptools 5.x
|
# Upgrade setuptools for jessie because the new moviepy package is not compatible with setuptools 5.x
|
||||||
[ "$(lsb_release --codename --short)" = "jessie" ] && pip install --upgrade setuptools
|
[ "$(lsb_release --codename --short)" = "jessie" ] && pip install --upgrade setuptools
|
||||||
pip install Pillow 'moviepy<1.0' 'imageio<2.8' certifi idna
|
pip install Pillow 'moviepy<1.0' 'imageio<2.8' certifi idna
|
||||||
|
|
Loading…
Reference in a new issue