# HG changeset patch
# User Tuomo Valkonen <tuomov@iki.fi>
# Date 1516785582 0
# Node ID 10bd7e3906d90ba1602dbcfc0cd26c4080fbf04c
# Parent  8d0a815022cc29ed30cbb3a69bf560a0c674798b
py2app fails on several dependencies (xdg, pyyaml) that are satisfied
(pip reports installed), so remove them; need to be installed manually

diff -r 8d0a815022cc -r 10bd7e3906d9 setup.py
--- 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(