chiark / gitweb /
default to Pillow for Python Imaging, that's what most people use now
authorHans-Christoph Steiner <hans@eds.org>
Thu, 17 Jul 2014 16:31:57 +0000 (12:31 -0400)
committerHans-Christoph Steiner <hans@eds.org>
Thu, 17 Jul 2014 16:32:35 +0000 (12:32 -0400)
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.

setup.py

index d4566f07a14edfb3375b0f6b2db7039e08c5aba5..618448a9b500422151d68c32b251d582c8b5410e 100644 (file)
--- 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',
         ],