From 49598d809d4152a643fc76cd78d30330326bc333 Mon Sep 17 00:00:00 2001 From: Hemanth Nakkina Date: Tue, 28 Feb 2023 17:37:38 +0530 Subject: [PATCH] Unpin python-glanceclient Recent changes in tempest [1][2] requires jsonschema 4.16.0 Without jsonschema 4.16.0, tempest cli commands are not loaded. But there is a conflict with warlock package used by python-glanceclient 2.17.1. Unpin python-glanceclient to use the latest version further allowing to install latest warlock and jsonschema. [1] https://review.opendev.org/c/openstack/tempest/+/875264 [2] https://bugs.launchpad.net/tempest/+bug/2008490/comments/3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fb39848..941b423 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ install_require = [ 'python-designateclient>=1.5,<3.0.0', 'python-heatclient<2.0.0', 'python-ironicclient', - 'python-glanceclient<3.0.0', + 'python-glanceclient', 'python-keystoneclient<3.22.0', 'python-magnumclient', 'python-manilaclient<2.0.0',