From 506f0f6c1aa13ef722c12dbb9158eadeccbb731d Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Mon, 13 Apr 2015 11:39:05 +0800 Subject: [PATCH] fix: [python-venv] python version was hardwritten and couldn't be changed without editing the charm. Now this is a valid charm variable that can be overridden via charm config files or on command line call. --- precise/python-venv/hooks/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/precise/python-venv/hooks/install b/precise/python-venv/hooks/install index 81a25f9..36db804 100755 --- a/precise/python-venv/hooks/install +++ b/precise/python-venv/hooks/install @@ -2,7 +2,7 @@ set -eux # -x for verbose logging to juju debug-log -VERSION="2.7.5" +VERSION=${VERSION:-"2.7.9"} ## ## INSTALL Python