From 07cff23aab22d3265272d460ecb126407a661b75 Mon Sep 17 00:00:00 2001 From: Fellype Cavalcante Date: Mon, 29 May 2017 13:44:49 -0300 Subject: [PATCH] python-oneviewclient version bump Updating the minimum version of python-oneviewclient in stable/newton. We noticed that the CI server have been using the latest version of python-oneviewclient and altered our jobs to use the minimum version specified at driver-requirements. When attempting to run stable/newton with python-oneviewclient==2.0.2 we noticed that the driver never worked with this version. The minimum required version for stable/newton is now 2.5.1. Closes-Bug: 1694297 Change-Id: Id396e529de3eba306421dac91e205f4b6a52573f --- driver-requirements.txt | 2 +- releasenotes/notes/client-version-6deeb64d489bebc3.yaml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/client-version-6deeb64d489bebc3.yaml diff --git a/driver-requirements.txt b/driver-requirements.txt index 711c3379e2..b5a418fdc7 100644 --- a/driver-requirements.txt +++ b/driver-requirements.txt @@ -8,7 +8,7 @@ proliantutils>=2.1.11 pyghmi>=0.8.0 pysnmp python-ironic-inspector-client>=1.5.0 -python-oneviewclient<3.0.0,>=2.0.2 +python-oneviewclient<3.0.0,>=2.5.1 python-scciclient>=0.4.0 python-seamicroclient>=0.4.0 UcsSdk==0.8.2.2 diff --git a/releasenotes/notes/client-version-6deeb64d489bebc3.yaml b/releasenotes/notes/client-version-6deeb64d489bebc3.yaml new file mode 100644 index 0000000000..7cdc1a3b7d --- /dev/null +++ b/releasenotes/notes/client-version-6deeb64d489bebc3.yaml @@ -0,0 +1,6 @@ +fixes: + - Updating the python-oneviewclient minimum version to 2.5.1 on + driver-requirements.txt. The minimum version that was in the requirements + was 2.0.2, and is very outdated, causing the driver to not work for this + version. With this change, the new minimal version works for the driver, + making the CI for stable/newton also work.