diff options
author | morganrol <morgan.richomme@orange.com> | 2021-05-07 16:20:17 +0200 |
---|---|---|
committer | morganrol <morgan.richomme@orange.com> | 2021-05-07 16:31:02 +0200 |
commit | ffb3846eac55aac7a50805f18c116ffcfdf2b0bd (patch) | |
tree | 72c3dcce4e03471bef6d6af6e36b8d9493366ac1 | |
parent | 07a4a7084d7fc149b8a491b5ef342cb8a9ca8e32 (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-- | .gitreview | 12 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 6 insertions, 8 deletions
@@ -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 @@ -5,6 +5,6 @@ from setuptools import setup setup( - setup_requires=['pbr','setuptools'], + setup_requires=['pbr<5.6.0','setuptools'], pbr=True ) |