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.

Changes:
  Also pinning pycodestyle to cope with pep8 failures.

Change-Id: I06136f3f445b6ee4858697e22e8d63ca3d81c137
(cherry picked from commit f6b9f34358)
This commit is contained in:
Julia Kreger 2020-05-14 10:05:50 -07:00 committed by Riccardo Pittau
parent d975587940
commit 48cfa42c34
2 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,7 @@ sushy>=3.2.0
ansible>=2.7
# HUAWEI iBMC hardware type uses the python-ibmcclient library
python-ibmcclient>=0.1.0
python-ibmcclient>=0.1.0,<0.2.0
# Dell EMC iDRAC sushy OEM extension
sushy-oem-idrac<=1.0.0

View File

@ -22,3 +22,4 @@ bashate>=0.5.1 # Apache-2.0
flake8-import-order>=0.17.1 # LGPLv3
Pygments>=2.2.0 # BSD
bandit!=1.6.0,>=1.1.0,<2.0.0 # Apache-2.0
pycodestyle>=2.0.0,<2.6.0 # MIT