Fix moviepy install on jessie

This commit is contained in:
Josué Tille 2018-05-04 22:30:40 +02:00
parent 4cbff3b86c
commit dcb20d96a3

View file

@ -72,6 +72,8 @@ install_source() {
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
# 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
pip install pillow moviepy
}