Updates to development dependency script 87/35987/3
authorDan Radez <dradez@redhat.com>
Mon, 12 Jun 2017 05:49:41 +0000 (01:49 -0400)
committerDan Radez <dradez@redhat.com>
Mon, 12 Jun 2017 06:28:28 +0000 (02:28 -0400)
- 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

index fb7ede7..fe4976a 100755 (executable)
@@ -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