Skip to content

Commit f8acae5

Browse files
committed
ignore deps when installing via pip
1 parent 5ed46a7 commit f8acae5

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
@@ -580,7 +580,7 @@ def run_pymodules_install(ctx, modules):
580580
# It works but should be replaced with something better
581581
shprint(sh.bash, '-c', (
582582
"source venv/bin/activate && env CC=/bin/false CXX=/bin/false "
583-
"PYTHONPATH={0} pip install --target '{0}' -r requirements.txt"
583+
"PYTHONPATH={0} pip install --target '{0}' --no-deps -r requirements.txt"
584584
).format(ctx.get_site_packages_dir()))
585585

586586

0 commit comments

Comments
 (0)