speech_recognition icon indicating copy to clipboard operation
speech_recognition copied to clipboard

flac-mac uses an SDK older than the 10.9 SDK and cannot be notarized (with workaround)

Open gernophil opened this issue 1 year ago • 4 comments

Hey, your flac-mac binary is compiled using an SDK older than the 10.9 SDK. The Apple notarizing service doesn't accept this anymore. As a workaround I am currently doing this:

from PyInstaller.utils.osx import set_macos_sdk_version
set_macos_sdk_version('path/to/flac-mac', 10, 9, 0)

However, that's not a clean solution. It would be great, if you would provide a newer flac-mac that satisfies this requirement.

Thanks :).

gernophil avatar Jan 18 '24 09:01 gernophil

There's also this solution from last year but it doesn't work for me. Your workaround though, sweet! Good find, thanks!

AmberSahdev avatar Apr 14 '24 05:04 AmberSahdev