summaryrefslogtreecommitdiffstats
path: root/python/pillowfight/README
diff options
context:
space:
mode:
author Dimitris Zlatanidis <d.zlatanidis@gmail.com>2016-08-22 19:49:31 +0100
committer David Spencer <idlemoor@slackbuilds.org>2016-08-28 00:22:59 +0100
commit66425fcca7ba37aeb4cc028869fe73a655bca068 (patch)
tree11ee623e4c1e0f17868b6fa8fcbd1e1c023e9e98 /python/pillowfight/README
parent9864c8761df5476a34260a79a5cbfc36a9c15278 (diff)
downloadslackbuilds-66425fcca7ba37aeb4cc028869fe73a655bca068.tar.gz
slackbuilds-66425fcca7ba37aeb4cc028869fe73a655bca068.tar.xz
python/pillowfight: Added (transition from PIL to Pillow).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'python/pillowfight/README')
-rw-r--r--python/pillowfight/README14
1 files changed, 14 insertions, 0 deletions
diff --git a/python/pillowfight/README b/python/pillowfight/README
new file mode 100644
index 0000000000..80173c8d32
--- /dev/null
+++ b/python/pillowfight/README
@@ -0,0 +1,14 @@
+Pillow is a replacement for PIL that works as a drop-in replacement.
+Unlike PIL, it's actively maintained and easy to install. It's pretty great.
+There's only one problem, which is that users must first uninstall PIL before
+installing Pillow, as they share a namespace.
+
+This makes it very hard for Python modules or products that need to run on a
+variety of configurations to easily depend on either PIL or Pillow without
+inevitably breaking something (perhaps in subtle ways). That makes it hard to
+safely transition.
+
+This package aims to "solve" that by providing a single dependency that can
+intelligently depend on either PIL or Pillow, based on what's already on the
+system. Packages that still need to work if PIL is installed, but aim to
+transition to Pillow, can simply depend on the pillowfight package.