From 66ccdef9007dfaa564cfd4fbcbc41b50237771b4 Mon Sep 17 00:00:00 2001 From: Adrian Dudau Date: Tue, 23 May 2017 14:13:55 +0200 Subject: python: Inherit setuptools instead of distutils for several packages python-appdirs python-keystoneauth python-lesscpy python-os-client-config The setup scripts of these modules use setuptools instead of distutils, resulting in errors like this: | File "setup.py", line 5, in | from setuptools import setup | ImportError: No module named setuptools Signed-off-by: Adrian Dudau Signed-off-by: Bruce Ashfield --- meta-openstack/recipes-devtools/python/python-appdirs_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-openstack/recipes-devtools/python/python-appdirs_git.bb') diff --git a/meta-openstack/recipes-devtools/python/python-appdirs_git.bb b/meta-openstack/recipes-devtools/python/python-appdirs_git.bb index 8e40f26..2482871 100644 --- a/meta-openstack/recipes-devtools/python/python-appdirs_git.bb +++ b/meta-openstack/recipes-devtools/python/python-appdirs_git.bb @@ -12,7 +12,7 @@ SRC_URI = "git://github.com/ActiveState/${SRCNAME}.git" S = "${WORKDIR}/git" -inherit distutils +inherit setuptools DEPENDS += " \ python-pip \ -- cgit v1.2.3-54-g00ecf