summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorDan Radez <dradez@redhat.com>2017-06-12 01:49:41 -0400
committerDan Radez <dradez@redhat.com>2017-06-12 02:28:28 -0400
commitff9beeb45e7d25aedf2d25644497b0468a96ee16 (patch)
tree7d06c1d0a80ff4e3bdb6dcd708a21a6e8d4bbb18 /ci
parent1f346dd0052a8a24309a55058c54299803d95e09 (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')
-rwxr-xr-xci/dev_dep_check.sh8
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
7 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259