Skip to content

Commit b03a50e

Browse files
committed
Replace pil with Pillow in python package requirements
Debian package python-pil does install Pillow, the alive fork of dead PIL project. When, however, pil is specified as package dependency in setup.py, and python-ev3dev is installed with either `easy_install python-ev3dev` or `python setup.py install`, an attempt is made to install the actual PIL from PyPI. This fails on my host system, and I think is not desired behavior anyway. Also see ev3dev/ev3dev-lang#113
1 parent 6132b16 commit b03a50e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
url='https://github.com/rhempel/ev3dev-lang-python',
1313
include_package_data=True,
1414
py_modules=['ev3dev'],
15-
install_requires=['pil']
15+
install_requires=['Pillow']
1616
)
1717

0 commit comments

Comments
 (0)