From 1340c4ccffb16f54035d35dee58444c86cf15583 Mon Sep 17 00:00:00 2001 From: Ivan Alejandro Date: Wed, 28 Jan 2015 14:17:41 -0300 Subject: Unzip installed deps. If not, the bundler has problem collecting the dependencies. --- bundler/actions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundler/actions.py b/bundler/actions.py index 89965fb..c579236 100644 --- a/bundler/actions.py +++ b/bundler/actions.py @@ -204,7 +204,7 @@ class PythonSetupAll(Action): if repo == "soledad": for subrepo in ["common", "client"]: with push_pop(repo, subrepo): - python("setup.py", "develop") + python("setup.py", "develop", "--always-unzip") sys.path.append(os.path.join(self._basedir, repo, subrepo, "src")) else: @@ -212,7 +212,7 @@ class PythonSetupAll(Action): if repo == "bitmask_client": self._build_client(repo, binaries_path) - python("setup.py", "develop") + python("setup.py", "develop", "--always-unzip") sys.path.append(os.path.join(self._basedir, repo, "src")) -- cgit v1.2.3