From 2f0d264a44109341582bc7841367e1925325366d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Touceda?= Date: Mon, 15 Sep 2014 15:42:44 -0300 Subject: Upgrade pip dependencies as well --- bundler/actions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bundler') diff --git a/bundler/actions.py b/bundler/actions.py index 2ab134d..4e36b57 100644 --- a/bundler/actions.py +++ b/bundler/actions.py @@ -166,7 +166,7 @@ class PythonSetupAll(Action): if repo == "soledad": for subrepo in ["common", "client"]: with push_pop(repo, subrepo): - pip("install", "-r", "pkg/requirements.pip") + pip("install", "-r", "pkg/requirements.pip", "--upgrade") python("setup.py", "develop") sys.path.append(os.path.join(self._basedir, repo, subrepo, "src")) @@ -176,12 +176,12 @@ class PythonSetupAll(Action): else: with push_pop(repo): if repo != "thandy": - pip("install", "-r", "pkg/requirements.pip") + pip("install", "-r", "pkg/requirements.pip", "--upgrade") else: # Thandy is a special kid at this point in # terms of packaging. So we install # dependencies ourselves for the time being - pip("install", "pycrypto") + pip("install", "pycrypto", "--upgrade") if repo == "bitmask_client": print "Running make on the client..." make() -- cgit v1.2.3