Updated macOS framework Info.plist to use x.y.z format for CFBundleShortVersionString to comply with Apple guidelines. Patch contributed by Martinus Verburg.
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
- <string>%VERSION%, (c) 2001-2024 Python Software Foundation.</string>
+ <string>%VERSION%</string>
<key>CFBundleLongVersionString</key>
<string>%VERSION%, (c) 2001-2024 Python Software Foundation.</string>
<key>CFBundleSignature</key>
--- /dev/null
+Mac framework Info.plist CFBundleShortVersionString now uses x.y.z only
+format to comply with `this Apple developer guideline
+<https://developer.apple.com/documentation/bundleresources/information-property-list/cfbundleshortversionstring>`_. Contributed by Martinus Verburg.