Wed, 24 Jan 2018 09:19:42 +0000
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(