From 666a62ae3d92a5033f85d974f7a68d6540e2ac8b Mon Sep 17 00:00:00 2001 From: Job Evers-Meltzer Date: Wed, 14 Dec 2016 16:28:38 -0600 Subject: [PATCH] try setting zip_safe=False --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a157918f4..fc5c0b0a5 100644 --- a/setup.py +++ b/setup.py @@ -113,7 +113,11 @@ elif platform == DARWIN: entry_points={'console_scripts': console_scripts}, package_data={ package_name: list(package_files('lbrynet/resources/ui')) - } + }, + # If this is True, setuptools tries to build an egg + # and py2app / modulegraph / imp.find_module + # doesn't like that. + zip_safe=False, ) elif platform == WINDOWS: