From: Hans-Christoph Steiner Date: Thu, 17 Jul 2014 16:31:57 +0000 (-0400) Subject: default to Pillow for Python Imaging, that's what most people use now X-Git-Tag: 0.2.1~6^2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=1bde10a642980bfa6eb19c3166260a081f8e151b;p=fdroidserver.git default to Pillow for Python Imaging, that's what most people use now PIL is the old standard Python Imaging. Pillow is a fork where development is actually continuing. It seems that all the distros are also switching from PIL to Pillow, including Debian, Ubuntu, Fedora, brew, MacPorts, etc. --- diff --git a/setup.py b/setup.py index d4566f07..618448a9 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ setup(name='fdroidserver', install_requires=[ 'mwclient', 'paramiko', - 'PIL', + 'Pillow', 'python-magic', 'apache-libcloud >= 0.14.1', ],