Bump Python version to 3.11.2; PyObjC version to 9.0.1, etc

This commit is contained in:
Greg Neagle
2023-03-15 16:56:19 -07:00
parent b565a2baf2
commit 6b0bd81b6f
3 changed files with 15 additions and 14 deletions

View File

@@ -4,7 +4,8 @@
TOOLSDIR=$(dirname "$0")
REQUIREMENTS="${TOOLSDIR}/py3_requirements.txt"
PYTHON_VERSION=3.9.13
PYTHON_FRAMEWORK_VERSION=3.11
PYTHON_VERSION=3.11.2
PYTHON_PRERELEASE_VERSION=
PYTHON_BASEURL="https://www.python.org/ftp/python/%s/python-%s${PYTHON_PRERELEASE_VERSION}-macos%s.pkg"
MACOS_VERSION=11
@@ -71,9 +72,9 @@ if [ "$LIB_COUNT" != "$UNIVERSAL_COUNT" ] ; then
fi
# test some more files in the framework
MORE_FILES="Python.framework/Versions/3.9/Resources/Python.app/Contents/MacOS/Python
MORE_FILES="Python.framework/Versions/${PYTHON_FRAMEWORK_VERSION}/Resources/Python.app/Contents/MacOS/Python
Python.framework/Versions/Current/Python
Python.framework/Versions/Current/bin/python3.9"
Python.framework/Versions/Current/bin/python${PYTHON_FRAMEWORK_VERSION}"
for TESTFILE in $MORE_FILES ; do
ARCH_TEST=$(file "${MUNKIROOT}/$TESTFILE" | grep "2 architectures")