switch back to pillow due to user complains

switch back to pillow due to user complains
and their inability of using the search function
pull/79/head 18.1.4
seebye 5 years ago
parent d1618b30c7
commit 45d225b4a8

@ -45,14 +45,8 @@ but they will be installed by pip.
$ sudo pip3 install ueberzug
```
Ueberzug uses pillow-simd instead of pillow,
but pillow-simd won't run on every hardware.
So if you experience e.g. a Segmentation fault
you can try to use ueberzug with pillow.
```bash
$ sudo pip3 uninstall pillow-simd
$ sudo pip3 install pillow
```
Note: You can improve the performance of image manipulation functions
by using [pillow-simd](https://github.com/uploadcare/pillow-simd) instead of pillow.
## Communication

@ -41,7 +41,7 @@ setuptools.setup(
# For a discussion on single-sourcing the version across setup.py and the
# project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='18.1.3', # Required
version='18.1.4', # Required
# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:
@ -94,7 +94,7 @@ setuptools.setup(
#
# For an analysis of "install_requires" vs pip's requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=['python-xlib', 'pillow-simd', 'docopt',
install_requires=['python-xlib', 'pillow', 'docopt',
'psutil', 'attrs'], # Optional
python_requires='>=3.5',

Loading…
Cancel
Save