diff options
Diffstat (limited to '')
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | kcc-c2e.py | 6 | ||||
-rwxr-xr-x | kcc-c2p.py | 6 | ||||
-rwxr-xr-x | kcc.py | 6 |
4 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md index 814ba77..4602906 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ You can find the latest released binary at the following links: ### For running from source: - Python 3.3+ - [PyQt5](http://www.riverbankcomputing.co.uk/software/pyqt/download5) 5.2.0+ -- [Pillow](http://pypi.python.org/pypi/Pillow/) 2.3.0+ +- [Pillow](http://pypi.python.org/pypi/Pillow/) 2.5.0+ - [psutil](https://pypi.python.org/pypi/psutil) 2.0+ - [python-slugify](http://pypi.python.org/pypi/python-slugify) diff --git a/kcc-c2e.py b/kcc-c2e.py index e6c1f59..3721b33 100755 --- a/kcc-c2e.py +++ b/kcc-c2e.py @@ -40,10 +40,10 @@ except ImportError: try: # noinspection PyUnresolvedReferences import PIL - if tuple(map(int, ('2.3.0'.split(".")))) > tuple(map(int, (PIL.PILLOW_VERSION.split(".")))): - missing.append('Pillow 2.3.0+') + if tuple(map(int, ('2.5.0'.split(".")))) > tuple(map(int, (PIL.PILLOW_VERSION.split(".")))): + missing.append('Pillow 2.5.0+') except ImportError: - missing.append('Pillow 2.3.0+') + missing.append('Pillow 2.5.0+') try: # noinspection PyUnresolvedReferences import slugify diff --git a/kcc-c2p.py b/kcc-c2p.py index cc272ad..ca84077 100755 --- a/kcc-c2p.py +++ b/kcc-c2p.py @@ -33,10 +33,10 @@ missing = [] try: # noinspection PyUnresolvedReferences import PIL - if tuple(map(int, ('2.3.0'.split(".")))) > tuple(map(int, (PIL.PILLOW_VERSION.split(".")))): - missing.append('Pillow 2.3.0+') + if tuple(map(int, ('2.5.0'.split(".")))) > tuple(map(int, (PIL.PILLOW_VERSION.split(".")))): + missing.append('Pillow 2.5.0+') except ImportError: - missing.append('Pillow 2.3.0+') + missing.append('Pillow 2.5.0+') if len(missing) > 0: try: # noinspection PyUnresolvedReferences diff --git a/kcc.py b/kcc.py index 1264841..905a9ae 100755 --- a/kcc.py +++ b/kcc.py @@ -47,10 +47,10 @@ except ImportError: try: # noinspection PyUnresolvedReferences import PIL - if tuple(map(int, ('2.3.0'.split(".")))) > tuple(map(int, (PIL.PILLOW_VERSION.split(".")))): - missing.append('Pillow 2.3.0+') + if tuple(map(int, ('2.5.0'.split(".")))) > tuple(map(int, (PIL.PILLOW_VERSION.split(".")))): + missing.append('Pillow 2.5.0+') except ImportError: - missing.append('Pillow 2.3.0+') + missing.append('Pillow 2.5.0+') try: # noinspection PyUnresolvedReferences import slugify |