diff options
author | Lei Maohui <leimaohui@cn.fujitsu.com> | 2018-05-15 09:55:49 -0700 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2018-05-29 10:23:22 -0400 |
commit | 43226f98a41691cdc85dd584080c3fea08b49434 (patch) | |
tree | 9bef999b4fbd5556c589cf12d01ce29fedd6642a | |
parent | 8a3f6fb4a670e0c902af78882d9d8839c91e9e4e (diff) | |
download | meta-cloud-services-43226f98a41691cdc85dd584080c3fea08b49434.tar.gz |
python-tenacity: Fix build error as following:
"distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr>=2.0.0')"
Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r-- | meta-openstack/recipes-devtools/python/python-tenacity_4.5.0.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-tenacity_4.5.0.bb b/meta-openstack/recipes-devtools/python/python-tenacity_4.5.0.bb index e48a95b..ffb3258 100644 --- a/meta-openstack/recipes-devtools/python/python-tenacity_4.5.0.bb +++ b/meta-openstack/recipes-devtools/python/python-tenacity_4.5.0.bb | |||
@@ -11,6 +11,11 @@ SRC_URI[sha256sum] = "e5eb0009d7fef345ffd27e43122ec288418b460952aeefde60df8e62c3 | |||
11 | 11 | ||
12 | inherit setuptools | 12 | inherit setuptools |
13 | 13 | ||
14 | # Satisfy setup.py 'setup_requires' | ||
15 | DEPENDS += " \ | ||
16 | python-pbr-native \ | ||
17 | " | ||
18 | |||
14 | RDEPENDS_${PN} += " \ | 19 | RDEPENDS_${PN} += " \ |
15 | python-six \ | 20 | python-six \ |
16 | python-futures \ | 21 | python-futures \ |