From 588e82e38098d597dcad81c4863f8052da6d1f5c Mon Sep 17 00:00:00 2001 From: Alice Ferrazzi Date: Thu, 16 Oct 2014 20:43:41 +0900 Subject: [PATCH] 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 --- scripts/make-bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-bootstrap.py b/scripts/make-bootstrap.py index 0b30ddf..a6b19d4 100755 --- a/scripts/make-bootstrap.py +++ b/scripts/make-bootstrap.py @@ -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):