From 3a82319ad7172de938cb1e7e01a270f41d09fe3d Mon Sep 17 00:00:00 2001 From: Attila Fazekas Date: Sun, 24 Nov 2013 18:53:20 +0100 Subject: [PATCH] fixup_stuff prettytable min version The minimum prettytable version is changed from 0.6 to 0.7 in the global requirements. If the system has an older prettytable version the fixup_stuff does not takes effect in time, because at fixup time the system has the old version. Ensure the fixup installs the minimum required version in time. Change-Id: If1737dacb25db73b68e707953d05576ad8a97da7 --- tools/fixup_stuff.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/fixup_stuff.sh b/tools/fixup_stuff.sh index f9362307d8..5fb47dc29b 100755 --- a/tools/fixup_stuff.sh +++ b/tools/fixup_stuff.sh @@ -51,7 +51,7 @@ function get_package_path() { # Fix prettytable 0.7.2 permissions # Don't specify --upgrade so we use the existing package if present -pip_install prettytable +pip_install 'prettytable>0.7' PACKAGE_DIR=$(get_package_path prettytable) # Only fix version 0.7.2 dir=$(echo $PACKAGE_DIR/prettytable-0.7.2*)