aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormorganrol <morgan.richomme@orange.com>2021-05-07 16:20:17 +0200
committermorganrol <morgan.richomme@orange.com>2021-05-07 16:31:02 +0200
commitffb3846eac55aac7a50805f18c116ffcfdf2b0bd (patch)
tree72c3dcce4e03471bef6d6af6e36b8d9493366ac1
parent07a4a7084d7fc149b8a491b5ef342cb8a9ca8e32 (diff)
[RELEASE] Fix pbr version to avoid docker build error
The new release of pbr check the consistancy between the python version and the last tag on the branch Issue-ID: INT-1882 Signed-off-by: morganrol <morgan.richomme@orange.com> Change-Id: Ibb110a9b65fe019208cd4448e6cf2c3e10518d29
-rw-r--r--.gitreview12
-rw-r--r--setup.py2
2 files changed, 6 insertions, 8 deletions
diff --git a/.gitreview b/.gitreview
index 82d6a22..2f7cc39 100644
--- a/.gitreview
+++ b/.gitreview
@@ -1,7 +1,5 @@
-
- [gerrit]
- host=gerrit.onap.org
- port=29418
- project=testsuite/pythonsdk-tests
- defaultbranch=master
- \ No newline at end of file
+[gerrit]
+ host=gerrit.onap.org
+ port=29418
+ project=testsuite/pythonsdk-tests
+ defaultbranch=guilin
diff --git a/setup.py b/setup.py
index 8b44c49..991295e 100644
--- a/setup.py
+++ b/setup.py
@@ -5,6 +5,6 @@
from setuptools import setup
setup(
- setup_requires=['pbr','setuptools'],
+ setup_requires=['pbr<5.6.0','setuptools'],
pbr=True
)