Skip to content

Commit 21bc8b8

Browse files
authored
Merge pull request kivy#1571 from JonasT/fixrecipes
Fix outdated hardcoded python recipe references in lxml, reportlab & Pillow recipe
2 parents d19e008 + 559e4aa commit 21bc8b8

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

pythonforandroid/recipes/Pillow/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ class PillowRecipe(CompiledComponentsPythonRecipe):
1010
url = 'https://github.com/python-pillow/Pillow/archive/{version}.tar.gz'
1111
site_packages_name = 'Pillow'
1212
depends = [
13-
('python2', 'python3crystax'),
1413
'png',
1514
'jpeg',
1615
'freetype',

pythonforandroid/recipes/lxml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class LXMLRecipe(CompiledComponentsPythonRecipe):
88
version = "3.6.0"
99
url = "https://pypi.python.org/packages/source/l/lxml/lxml-{version}.tar.gz"
10-
depends = [("python2", "python3crystax"), "libxml2", "libxslt"]
10+
depends = ["libxml2", "libxslt"]
1111
name = "lxml"
1212

1313
call_hostpython_via_targetpython = False # Due to setuptools

pythonforandroid/recipes/reportlab/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class ReportLabRecipe(CompiledComponentsPythonRecipe):
99
version = 'c088826211ca'
1010
url = 'https://bitbucket.org/rptlab/reportlab/get/{version}.tar.gz'
11-
depends = [('python2', 'python3crystax'), 'freetype']
11+
depends = ['freetype']
1212

1313
def prebuild_arch(self, arch):
1414
if not self.is_patched(arch):

0 commit comments

Comments
 (0)