From 3904d0202fa70942da5b85aa68477851ca234b75 Mon Sep 17 00:00:00 2001 From: Julia Kreger Date: Thu, 14 May 2020 10:05:50 -0700 Subject: [PATCH] Pin the python-ibmcclient upper bounds due to six usage Python-ibmcclient 0.2.0 uses six, which is not installed by default as it is not necessary for python3 only usage. This patch pins the upper bounds until the library can be fixed and a new version released. Change-Id: I06136f3f445b6ee4858697e22e8d63ca3d81c137 (cherry picked from commit f6b9f343581eb430cb339dde09bf97915e2e3a7b) --- driver-requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/driver-requirements.txt b/driver-requirements.txt index e98ef8b895..f0902eecb7 100644 --- a/driver-requirements.txt +++ b/driver-requirements.txt @@ -17,4 +17,5 @@ sushy>=1.9.0 ansible>=2.5 # HUAWEI iBMC hardware type uses the python-ibmcclient library -python-ibmcclient>=0.1.0 +python-ibmcclient>=0.1.0,<0.2.0 +