Skip to content

Commit cb929a5

Browse files
committed
Enable python3's compatibility to bootstraps webview and service_only
1 parent f541a9f commit cb929a5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pythonforandroid/bootstraps/service_only/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class ServiceOnlyBootstrap(Bootstrap):
99

1010
name = 'service_only'
1111

12-
recipe_depends = ['genericndkbuild', ('python2', 'python3crystax')]
12+
recipe_depends = ['genericndkbuild', ('python2', 'python3', 'python3crystax')]
1313

1414
def run_distribute(self):
1515
info_main('# Creating Android project from build and {} bootstrap'.format(

pythonforandroid/bootstraps/webview/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class WebViewBootstrap(Bootstrap):
88
name = 'webview'
99

10-
recipe_depends = ['genericndkbuild', ('python2', 'python3crystax')]
10+
recipe_depends = ['genericndkbuild', ('python2', 'python3', 'python3crystax')]
1111

1212
def run_distribute(self):
1313
info_main('# Creating Android project from build and {} bootstrap'.format(

pythonforandroid/recipes/flask/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class FlaskRecipe(PythonRecipe):
99
version = '0.10.1'
1010
url = 'https://github.com/pallets/flask/archive/{version}.zip'
1111

12-
depends = [('python2', 'python3crystax'), 'setuptools', 'genericndkbuild']
12+
depends = [('python2', 'python3', 'python3crystax'), 'setuptools', 'genericndkbuild']
1313

1414
python_depends = ['jinja2', 'werkzeug', 'markupsafe', 'itsdangerous', 'click']
1515

pythonforandroid/recipes/genericndkbuild/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class GenericNDKBuildRecipe(BootstrapNDKRecipe):
77
version = None
88
url = None
99

10-
depends = [('python2', 'python3crystax')]
10+
depends = [('python2', 'python3', 'python3crystax')]
1111
conflicts = ['sdl2', 'pygame', 'sdl']
1212

1313
def should_build(self, arch):

0 commit comments

Comments
 (0)