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
| ... | ... |
@@ -51,7 +51,7 @@ function get_package_path() {
|
| 51 | 51 |
|
| 52 | 52 |
# Fix prettytable 0.7.2 permissions |
| 53 | 53 |
# Don't specify --upgrade so we use the existing package if present |
| 54 |
-pip_install prettytable |
|
| 54 |
+pip_install 'prettytable>0.7' |
|
| 55 | 55 |
PACKAGE_DIR=$(get_package_path prettytable) |
| 56 | 56 |
# Only fix version 0.7.2 |
| 57 | 57 |
dir=$(echo $PACKAGE_DIR/prettytable-0.7.2*) |