py2app fails on several dependencies (xdg, pyyaml) that are satisfied

Wed, 24 Jan 2018 09:19:42 +0000

author
Tuomo Valkonen <tuomov@iki.fi>
date
Wed, 24 Jan 2018 09:19:42 +0000
changeset 60
10bd7e3906d9
parent 59
8d0a815022cc
child 61
bc6c3d74e6ea

py2app fails on several dependencies (xdg, pyyaml) that are satisfied
(pip reports installed), so remove them; need to be installed manually

setup.py file | annotate | diff | comparison | revisions
--- a/setup.py	Wed Jan 24 09:15:36 2018 +0000
+++ b/setup.py	Wed Jan 24 09:19:42 2018 +0000
@@ -7,7 +7,10 @@
     'plist': {
         'LSUIElement': True,
     },
-    'packages': ['rumps', 'keyring', 'pyyaml', 'xdg'],
+    'packages': ['rumps', 'keyring'],
+    # The following is the real list, byt py2app fails despite
+    # them being installed according to pip3 and everything
+    #'packages': ['rumps', 'keyring', 'xdg', 'pyyaml'],
 }
 
 setup(

mercurial