From 7a241bd72b4cb0878898b531cf3e738befa41de3 Mon Sep 17 00:00:00 2001 From: Dorian Pula Date: Wed, 20 May 2015 10:48:34 -0400 Subject: [PATCH] Add task to upgrade pip and virtualenv to the latest version available on PyPI. --- tasks/python.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tasks/python.yaml b/tasks/python.yaml index 14fb6f5..012bd2b 100644 --- a/tasks/python.yaml +++ b/tasks/python.yaml @@ -12,4 +12,7 @@ - name: install virtualenv sudo: yes - pip: name=virtualenv + pip: name={{ item }} state=present extra_args='--upgrade' + with_items: + - pip + - virtualenv