* Update to Python 3.9.10 and update libs * Fix tokenize-rt version as 4.2.0 was yanked * PyObjC doesn't seem universal anymore, trying to force a build * Let's upgrade to latest release of PyObjC * Update release notes to reflect PyObjC change
14 lines
577 B
Bash
Executable File
14 lines
577 B
Bash
Executable File
#!/bin/zsh
|
|
#
|
|
# Build script for all Python 3 frameworks
|
|
# Adapted from https://github.com/munki/munki/blob/Munki3dev/code/tools/build_python_framework.sh
|
|
# IMPORTANT
|
|
# Run this with your current directory being the path where this script is located
|
|
|
|
TOOLSDIR=$(dirname $0)
|
|
SIGNING_IDENTITY="Developer ID Installer: Clever DevOps Co. (9GQZ7KUFR6)"
|
|
|
|
"$TOOLSDIR/build_python_framework_pkgs.zsh" minimal ${SIGNING_IDENTITY}
|
|
"$TOOLSDIR/build_python_framework_pkgs.zsh" no_customization ${SIGNING_IDENTITY}
|
|
"$TOOLSDIR/build_python_framework_pkgs.zsh" recommended ${SIGNING_IDENTITY}
|