Skip to content

Commit

Permalink
PKG: add google libs to all macos standalone
Browse files Browse the repository at this point in the history
  • Loading branch information
peircej committed Jul 1, 2024
1 parent 4ad77b2 commit e1a453f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setupApp.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ def dyld_find(name, loader=None, **kwargs):
'markdown_it',
'zeroconf', 'ifaddr', # for pupillabs plugin (fail to build)
'websocket', # dependency for emotiv that doesn't install nicely from plugins
'google', # otherwise it gets included (for some reason) but not code-signed
]

# Add packages that older PsychoPy (<=2023.1.x) shipped, for useVersion() compatibility
Expand All @@ -131,7 +132,6 @@ def dyld_find(name, loader=None, **kwargs):
'macropy',
]
)
packages.append('google') # otherwise it gets inserted into zip and won't sign
packages.append('PyQt5')
packages.remove('PyQt6') # PyQt6 is not compatible with earlier PsychoPy versions

Expand All @@ -142,6 +142,7 @@ def dyld_find(name, loader=None, **kwargs):
'OpenGL': 'pyopengl',
'opencv': 'opencv-python',
'googleapiclient': 'google-api-python-client',
'google': 'google-api-python-client',
'macropy': 'macropy3',
}

Expand Down

0 comments on commit e1a453f

Please sign in to comment.