Skip to content

Commit 762fc0e

Browse files
author
Dan Schellenberg
committed
updated to use any version of pillow >= 2.9.0
This change allows installation of the module using Thonny (using pip install cImage). Without this, Thonny fails on both Mac and Windows to install the legacy 2.9.0 version of Pillow, which causes the cImage installation to also fail. Tested on Mac and Win.
1 parent d6d5b67 commit 762fc0e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Pillow==2.9.0
1+
Pillow>=2.9.0

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
py_modules = ['cImage'],
1111
author = 'Brad Miller',
1212
author_email = '[email protected]',
13-
install_requires= ['Pillow==2.9.0'],
13+
install_requires= ['Pillow>=2.9.0'],
1414
include_package_data = False,
1515
license='GPL',
1616
url = 'https://github.com/bnmnetp/cImage',

0 commit comments

Comments
 (0)