diff options
author | Dan Radez <dradez@redhat.com> | 2017-06-12 01:49:41 -0400 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2017-06-12 02:28:28 -0400 |
commit | ff9beeb45e7d25aedf2d25644497b0468a96ee16 (patch) | |
tree | 7d06c1d0a80ff4e3bdb6dcd708a21a6e8d4bbb18 /ci/dev_dep_check.sh | |
parent | 1f346dd0052a8a24309a55058c54299803d95e09 (diff) |
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>
Diffstat (limited to 'ci/dev_dep_check.sh')
-rwxr-xr-x | ci/dev_dep_check.sh | 8 |
1 files 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 |