From 8a7b2439730d1a6957261fd0b82e60107f44136a Mon Sep 17 00:00:00 2001 From: yatinkarel Date: Mon, 27 Feb 2023 21:11:22 +0530 Subject: [PATCH] Fix pin of novaclient to working version Previous pin[1] didn't worked as it conflicted with version requirements from openstackclient This patch pins novaclient to last known good version. [1] https://review.opendev.org/c/x/browbeat/+/874928 Closes-Bug: #2008235 Change-Id: I446f6348fbfc8becfe3fa047b09cb320d2ed143f --- ansible/install/roles/rally/tasks/main.yml | 4 ++-- tools-requirements.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/install/roles/rally/tasks/main.yml b/ansible/install/roles/rally/tasks/main.yml index 282c981b6..8982a9039 100644 --- a/ansible/install/roles/rally/tasks/main.yml +++ b/ansible/install/roles/rally/tasks/main.yml @@ -56,9 +56,9 @@ # Till browbeat code is compatible with novaclient-18.3.0 # https://bugs.launchpad.net/openstack-browbeat/+bug/2008235 -- name: Ensure python-novaclient<=17.6.0 +- name: Ensure python-novaclient<18.3.0 pip: - name: 'python-novaclient<=17.6.0' + name: 'python-novaclient<18.3.0' virtualenv: "{{ rally_venv }}" - name: Create rally configuration directory diff --git a/tools-requirements.txt b/tools-requirements.txt index 7bab4f852..c739c0d6c 100644 --- a/tools-requirements.txt +++ b/tools-requirements.txt @@ -5,4 +5,4 @@ pyrsistent==0.16.0;python_version<'3' pyrsistent>=0.17.0;python_version>='3' paramiko==2.8.0 python-manilaclient<=3.0.0 -python-novaclient<=17.6.0 +python-novaclient<18.3.0