8000 fix bug preventing pure python dependencies to be installed under pyt… · germn/python-for-android@b8c8dcb · GitHub
[go: up one dir, main page]

Skip to content

Commit b8c8dcb

Browse files
loulouxivinclement
authored andcommitted
fix bug preventing pure python dependencies to be installed under python3
1 parent 2128dab commit b8c8dcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ def build_recipes(build_order, python_modules, ctx):
584584

585585

586586
def run_pymodules_install(ctx, modules):
587-
modules = filter(ctx.not_has_package, modules)
587+
modules = list(filter(ctx.not_has_package, modules))
588588

589589
if not modules:
590590
info('There are no Python module 3794 s to install, skipping')

0 commit comments

Comments
 (0)
0