8000 Fix outdated hardcoded python recipe references in recipes · marcopifferi/python-for-android@559e4aa · GitHub
[go: up one dir, main page]

Skip to content

Commit 559e4aa

Browse files
author
Jonas Thiem
committed
Fix outdated hardcoded python recipe references in recipes
1 parent 10351c2 commit 559e4aa

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)
0