From 75d2ea18f427187878df473d119ed1f21e56731c Mon Sep 17 00:00:00 2001 From: Vladimir Khlyunev Date: Thu, 24 Nov 2022 23:29:47 +0400 Subject: [PATCH] Pin keystoneauth1 package <5.1.0 Fresh release of keystoneauth1 uses f-strings which breaks our legacy py2.7 jobs PROD-37049 Change-Id: I786ca2052ff0d9da74b8ef6a8eebce5e28cd731d --- src/com/mirantis/mk/Openstack.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/src/com/mirantis/mk/Openstack.groovy b/src/com/mirantis/mk/Openstack.groovy index 0a55867a..d50d742e 100644 --- a/src/com/mirantis/mk/Openstack.groovy +++ b/src/com/mirantis/mk/Openstack.groovy @@ -56,6 +56,7 @@ def setupOpenstackVirtualenv(path, version = 'latest', python="python2") { 'cmd2>=0.9.1;python_version=="3.5"', // NOTE: pin client packages to current latest to prevent // downloading packages which are not support Python 2.7 + 'keystoneauth1<=5.0.0', 'python-openstackclient==4.0.0', 'python-heatclient==1.18.0', 'docutils==0.16',