--- install.py 2019-06-04 12:15:27.020990851 -0400 +++ install.py 2019-06-04 12:29:33.010627424 -0400 @@ -241,13 +241,13 @@ required_found = False try: from PIL import Image - assert Image.VERSION >= '1.1.5' + assert Image.PILLOW_VERSION >= '1.1.5' print ' Python Imaging Library ....... OK' except ImportError: print ' !!! Python Imaging Library ... Not found' required_found = False except AssertionError: - print ' !!! Python Imaging Library ... version', Image.VERSION, + print ' !!! Python Imaging Library ... version', Image.PILLOW_VERSION, print 'found' print ' !!! Python Imaging Library 1.1.5 or higher is required' required_found = False --- ./src/comix.py 2019-06-04 13:07:05.169023883 -0400 +++ ./src/comix.py 2019-06-04 13:07:26.681961014 -0400 @@ -50,11 +50,11 @@ try: from PIL import Image - assert Image.VERSION >= '1.1.5' + assert Image.PILLOW_VERSION >= '1.1.5' except AssertionError: print "You don't have the required version of the Python Imaging", print 'Library (PIL) installed.' - print 'Installed PIL version is: %s' % Image.VERSION + print 'Installed PIL version is: %s' % Image.PILLOW_VERSION print 'Required PIL version is: 1.1.5 or higher' sys.exit(1) except ImportError: