From 5fa400a3e3902cd49413a7bd372ddc99766f3af6 Mon Sep 17 00:00:00 2001 From: Samuel Clay Date: Tue, 21 Jan 2014 17:30:20 -0800 Subject: [PATCH] Upgrading pip as part of pip req. --- config/requirements.txt | 2 +- fabfile.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config/requirements.txt b/config/requirements.txt index 9e5911aa2..2f9710c88 100755 --- a/config/requirements.txt +++ b/config/requirements.txt @@ -23,7 +23,7 @@ kombu==2.5.7 mongoengine==0.8.2 nltk==2.0.4 oauth2==1.5.211 -psutil==1.5.1 +psutil>=1.2.1 pyes==0.19.1 pyelasticsearch==0.5 pyflakes==0.6.1 diff --git a/fabfile.py b/fabfile.py index feff6aeda..480b3d87d 100644 --- a/fabfile.py +++ b/fabfile.py @@ -429,6 +429,7 @@ def setup_python(): def pip(): with cd(env.NEWSBLUR_PATH): sudo('easy_install -U pip') + sudo('pip install --upgrade pip') sudo('pip install -r requirements.txt') # PIL - Only if python-imaging didn't install through apt-get, like on Mac OS X.