Skip to content

Commit

Permalink
Removed python3cyrystax optional dependency from pil recipe
Browse files Browse the repository at this point in the history
PIL doesn't work with python3. pillow will, when a recipe is added for that.
  • Loading branch information
inclement committed Sep 16, 2017
1 parent 14e442b commit c60e02d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pythonforandroid/recipes/pil/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class PILRecipe(CompiledComponentsPythonRecipe):
name = 'pil'
version = '1.1.7'
url = 'http://effbot.org/downloads/Imaging-{version}.tar.gz'
depends = [('python2', 'python3crystax'), 'png', 'jpeg']
depends = ['python2', 'png', 'jpeg']
site_packages_name = 'PIL'

patches = ['disable-tk.patch',
Expand Down

0 comments on commit c60e02d

Please sign in to comment.