From ff9beeb45e7d25aedf2d25644497b0468a96ee16 Mon Sep 17 00:00:00 2001
From: Dan Radez <dradez@redhat.com>
Date: Mon, 12 Jun 2017 01:49:41 -0400
Subject: Updates to development dependency script

- Removing easy install references
- adding gitpython to pip installs

Change-Id: I8a07749d6444b63304cb5eabbf8d021eeb2fcd33
Signed-off-by: Dan Radez <dradez@redhat.com>
---
 ci/dev_dep_check.sh | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/ci/dev_dep_check.sh b/ci/dev_dep_check.sh
index fb7ede71..fe4976a1 100755
--- a/ci/dev_dep_check.sh
+++ b/ci/dev_dep_check.sh
@@ -35,7 +35,7 @@ fi
 for i in epel-release python34-PyYAML openvswitch libguestfs \
          libguestfs-tools-c libvirt-python python2-oslo-config \
          python2-debtcollector python34-devel libxslt-devel \
-         libxml2-devel python-virtualbmc; do
+         libxml2-devel python-virtualbmc python34-jinja2 python34-pip; do
     # Make sure deploy deps are installed
     if ! rpm -q $i > /dev/null; then
         if ! sudo yum install -y $i; then
@@ -46,11 +46,7 @@ for i in epel-release python34-PyYAML openvswitch libguestfs \
 done
 
 # install pip dependencies
-easy_install-3.4 pip
-sudo pip3 install python-ipmi
-
-# Make sure jinja2 is installed
-easy_install-3.4 jinja2
+sudo pip3 install python-ipmi gitpython pygerrit2
 
 # Required packages to redirect stdin with virt-customize
 if ! sudo yum -y install libguestfs libguestfs-tools libguestfs-tools-c supermin supermin5 supermin-helper perl-Sys-Guestfs python-libguestfs; then
-- 
cgit