From f8acae5871450b2ba8f664e28fe53f22fa568962 Mon Sep 17 00:00:00 2001 From: Ryan Pessa Date: Fri, 8 Jan 2016 13:14:26 -0600 Subject: [PATCH] ignore deps when installing via pip --- pythonforandroid/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonforandroid/build.py b/pythonforandroid/build.py index a975956b90..d61e5e9105 100644 --- a/pythonforandroid/build.py +++ b/pythonforandroid/build.py @@ -580,7 +580,7 @@ def run_pymodules_install(ctx, modules): # It works but should be replaced with something better shprint(sh.bash, '-c', ( "source venv/bin/activate && env CC=/bin/false CXX=/bin/false " - "PYTHONPATH={0} pip install --target '{0}' -r requirements.txt" + "PYTHONPATH={0} pip install --target '{0}' --no-deps -r requirements.txt" ).format(ctx.get_site_packages_dir()))