Python: fix the wheel package

This commit is contained in:
Frederik Rietdijk
2016-06-16 11:16:30 +02:00
parent 1265acc201
commit 9f2699fd30
2 changed files with 4 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ for f in sys.path:
for req in pkg_resources.find_distributions(f):
if req not in packages[req.project_name]:
# some exceptions inside buildPythonPackage
if req.project_name in ['setuptools', 'pip']:
if req.project_name in ['setuptools', 'pip', 'wheel']:
continue
packages[req.project_name].append(req)