# HG changeset patch # User Jeff Hammel # Date 1604419473 28800 # Node ID eb0f4870a019501a52f0a2c95bbfd23c9965c5b1 # Parent 230fb4ae30c7cb610f03376c07457f2077751d69 depend on pillow which exists diff -r 230fb4ae30c7 -r eb0f4870a019 setup.py --- a/setup.py Mon Mar 14 14:32:06 2011 -0700 +++ b/setup.py Tue Nov 03 08:04:33 2020 -0800 @@ -8,16 +8,8 @@ except: description = '' -# Dependency check at run time -# If PIL is not found, then it is added in the ``install_requires`` list -install_requires = [] # Empty list if PIL is found -try: - try: - require('PIL') - except DistributionNotFound: - require('Image') -except DistributionNotFound: - install_requires = ['PIL'] + +install_requires = ['pillow'] version = '0.1.6'