This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author bettyrab
Recipients bettyrab, ned.deily, ronaldoussoren
Date 2021-08-19.19:20:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1629400841.5.0.620649984884.issue44933@roundup.psfhosted.org>
In-reply-to
Content
I found the fix for it earlier today and of course the fix is always right in front of you, you just need to look in the right place lol jokes on me.

I orginnaly had this and a few other things in my notarization script to get python notarized.
codesign --force --options runtime --entitlements $MUNKIROOT/entitlements.plist --deep --verbose -s "$DevApp" $MUNKIROOT/Python.framework/Versions/$PYTHON_FRAMEWORK_VERSION/bin/"python$PYTHON_FRAMEWORK_VERSION"

So i just had to add the stuff below to make python3.x-intel64 also get notarized properly

codesign --force --options runtime --entitlements $MUNKIROOT/entitlements.plist --deep --verbose -s "$DevApp" $MUNKIROOT/Python.framework/Versions/$PYTHON_FRAMEWORK_VERSION/bin/"python$PYTHON_FRAMEWORK_VERSION-intel64"

https://github.com/lifeunexpected/Scripts/blob/master/Munki.Notarize.zsh

I mostly posted this in case anyone else randomly googles this type off issue so maybe it can help them.
History
Date User Action Args
2021-08-19 19:20:41bettyrabsetrecipients: + bettyrab, ronaldoussoren, ned.deily
2021-08-19 19:20:41bettyrabsetmessageid: <1629400841.5.0.620649984884.issue44933@roundup.psfhosted.org>
2021-08-19 19:20:41bettyrablinkissue44933 messages
2021-08-19 19:20:40bettyrabcreate