You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
input(f'Check whether notarization was successful. You can check further logs using "xcrun notarytool log --keychain-profile {keychain_profile} <run-id>"')
set_macos_sdk_version('env/lib/python3.12/site-packages/speech_recognition/flac-mac', 10, 9, 0) # NOTE: Change the path according to where your binary is located
125
+
111
126
elifplatform.system() =='Linux':
112
127
pyinstaller_options.extend([
113
128
'--hidden-import=PIL._tkinter_finder',
@@ -131,13 +146,18 @@ def zip():
131
146
132
147
zip_name='Open-Interface-v'+str(version)
133
148
ifplatform.system() =='Darwin': # MacOS
134
-
zip_name=zip_name+'-MacOS'+'.zip'
135
-
zip_cli_command='cd dist/; zip -r9 '+zip_name+' '+app_name+'.app'
149
+
ifplatform.processor() =='arm':
150
+
zip_name=zip_name+'-MacOS-M-Series'+'.zip'
151
+
else:
152
+
zip_name=zip_name+'-MacOS-Intel'+'.zip'
153
+
154
+
# Special zip command for macos to keep the complex directory metadata intact to keep the codesigning valid
0 commit comments