Pin more-itertools==5.0.0 73/86073/1
authorJamo Luhrsen <jluhrsen@gmail.com>
Sat, 30 Nov 2019 06:22:44 +0000 (22:22 -0800)
committerJamo Luhrsen <jluhrsen@gmail.com>
Sat, 30 Nov 2019 06:22:44 +0000 (22:22 -0800)
Newer networking-l2gw is pulling in newer versions of
more-itertools which fails with our python2 env. This
will get around that until we can get up to speed with
python3.

the error seen in the console log is:

01:20:28 ERROR: Package 'more-itertools' requires a different Python: 2.7.5 not in '>=3.4'
01:20:28
Build step 'Execute shell' marked build as failure

example job:
https://jenkins.opendaylight.org/releng/view/netvirt/job/netvirt-csit-hwvtep-1node-0cmb-1ctl-2cmp-openstack-queens-upstream-stateful-sodium/105/consoleFull

Signed-off-by: Jamo Luhrsen <jluhrsen@gmail.com>
Change-Id: I3e9a73f490c084b035f71af37e39315b068f8306

jjb/integration/integration-deploy-openstack-run-test.sh

index 0ca5106ce38907945139fd07a1da65f6ae27b58e..81afad6b154f82c15f8c9bf7606917fa1646b2e4 100644 (file)
@@ -105,7 +105,7 @@ function install_openstack_clients_in_robot_vm() {
 
     if [ "${ENABLE_NETWORKING_L2GW}" == "yes" ]; then
         #networking-l2gw is not officially available in any release yet. Getting the latest stable version.
-        $PYTHON -m pip install networking-l2gw==11.0.0
+        $PYTHON -m pip install networking-l2gw==11.0.0 more-itertools==5.0.0
     fi
 }