1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-02 09:10:11 +02:00

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.
This commit is contained in:
Hans-Christoph Steiner 2014-07-17 12:31:57 -04:00
parent f5890646e6
commit 1bde10a642

View File

@ -30,7 +30,7 @@ setup(name='fdroidserver',
install_requires=[
'mwclient',
'paramiko',
'PIL',
'Pillow',
'python-magic',
'apache-libcloud >= 0.14.1',
],