diff options
author | 2020-06-02 11:54:25 -0700 | |
---|---|---|
committer | 2020-06-05 15:29:21 -0400 | |
commit | 8c48205bcd4d4793ce81a611644d520b519d6588 (patch) | |
tree | cf5e7450c5c9dd79fd3c5251b2df2357151bb3ed | |
parent | fc28519392a4a17ead9ef8f83b06c13c71637bab (diff) | |
download | meta-cloud-services-8c48205bcd4d4793ce81a611644d520b519d6588.tar.gz meta-cloud-services-8c48205bcd4d4793ce81a611644d520b519d6588.tar.bz2 meta-cloud-services-8c48205bcd4d4793ce81a611644d520b519d6588.zip |
python-taskflow: satisfy setup.py setup_requires
Commit 8fdbb0381d disallows fetch of code during do_compile task.
This commits extends DEPENDS to python-pbr-native.
Signed-off-by: Babak Sarashki <Babak.SarAshki@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | meta-openstack/recipes-devtools/python/python-taskflow_git.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-taskflow_git.bb b/meta-openstack/recipes-devtools/python/python-taskflow_git.bb index 1717617d..1904b560 100644 --- a/meta-openstack/recipes-devtools/python/python-taskflow_git.bb +++ b/meta-openstack/recipes-devtools/python/python-taskflow_git.bb @@ -19,6 +19,11 @@ DEPENDS += " \ python-pbr \ " +# Satisfy setup.py 'setup_requires' +DEPENDS += " \ + python-pbr-native \ + " + RDEPENDS_${PN} += " \ python-pbr \ python-six \ @@ -37,4 +42,4 @@ RDEPENDS_${PN} += " \ python-cachetools \ python-debtcollector \ " -
\ No newline at end of file + |