Skip to content

Commit

Permalink
switch back to pillow due to user complains
Browse files Browse the repository at this point in the history
switch back to pillow due to user complains
and their inability of using the search function
  • Loading branch information
seebye committed Aug 16, 2019
1 parent d1618b3 commit 45d225b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
# 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:
Expand Down Expand Up @@ -94,7 +94,7 @@
#
# 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',

Expand Down

0 comments on commit 45d225b

Please sign in to comment.