From 874ff38bc4e011a5ba22f006745e86ef8e052346 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Sat, 5 May 2018 10:51:57 +0200 Subject: [PATCH] Fix install moviepy --- scripts/_common.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/_common.sh b/scripts/_common.sh index 3d75700..6b6b2b7 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -113,6 +113,8 @@ extract_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 }