From 2db357c5283ef9d2bd5e72fdc39357913f6d16d0 Mon Sep 17 00:00:00 2001 From: Wes Hayutin Date: Tue, 19 Feb 2019 14:34:08 -0700 Subject: [PATCH] ensure pip is updated in reproducer epel installs an older version of pip. The older version of pip installs openstacksdk==.013 however is unable to import the library. The updated version of pip resolves this issue. Change-Id: Iacb4dd3cd3229ff9d68749c01c8f89af3460d51d --- .../templates/reproducer-zuul-based-quickstart.sh.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/create-zuul-based-reproducer/templates/reproducer-zuul-based-quickstart.sh.j2 b/roles/create-zuul-based-reproducer/templates/reproducer-zuul-based-quickstart.sh.j2 index 947bdb538..f1a89768b 100644 --- a/roles/create-zuul-based-reproducer/templates/reproducer-zuul-based-quickstart.sh.j2 +++ b/roles/create-zuul-based-reproducer/templates/reproducer-zuul-based-quickstart.sh.j2 @@ -185,6 +185,8 @@ install_bindep # bindep.txt and installs # dependencies listed in the file. install_package_deps_via_bindep +# Ensure pip is updated +sudo pip install --upgrade pip # Fail as early as possible if the docker # group is not setup appropriately.