summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2014-09-15 15:42:44 -0300
committerTomás Touceda <chiiph@leap.se>2014-09-15 15:42:44 -0300
commit2f0d264a44109341582bc7841367e1925325366d (patch)
treedd01ca34272613c6c4d736716f0f190ca5c75325
parentf802d28a515c8cd60fdcad9fc32d79fbdf866e60 (diff)
Upgrade pip dependencies as well
-rw-r--r--bundler/actions.py6
1 files changed, 3 insertions, 3 deletions
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()