Install pillow instead of PIL

PIL upstream is stopped and is not setuptools compatible.
Instead pillow looks to be a good replacement.
pillow is a functional drop-in replacement for PIL.

Closes-Bug: 1382016

Change-Id: I42bbafdb17964110a19083fd8a4dbe8561984198
This commit is contained in:
Alice Ferrazzi 2014-10-16 20:43:41 +09:00
parent c69f555032
commit 588e82e380
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ def after_install(options, home_dir):
easy_install('SQLAlchemy==0.6', home_dir)
easy_install('simplejson', home_dir)
easy_install('Babel', home_dir)
easy_install('PIL', home_dir)
easy_install('pillow', home_dir)
def easy_install(package, home_dir, optional_args=None):