1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: PIL is provided by Pillow
The egg-info dependencies uses the upstream name Pillow, not PIL which is the python import name.
Author: Nirgal Vourgère <jmv_deb@nirgal.com>
Bug-Debian: https://bugs.debian.org/761140
Forwarded: https://github.com/enthought/enable/pull/154
Last-Update: 2014-12-07
---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format.
--- python-enable-4.3.0.orig/enable/__init__.py
+++ python-enable-4.3.0/enable/__init__.py
@@ -7,5 +7,5 @@ __version__ = '4.3.0'
__requires__ = [
'traitsui',
- 'PIL',
+ 'Pillow',
]
|