Update Python build script and packaging bits to support Python 3.12; update Python requirements

This commit is contained in:
Greg Neagle
2024-02-23 11:18:58 -08:00
parent 36769cdbbc
commit 9e541a8e1a
4 changed files with 14 additions and 14 deletions
@@ -8,7 +8,7 @@ if [ -f "/usr/local/munki/python" ]; then
fi
# sometimes old versions are left behind in the framework. remove them.
for OLDVERS in 3.7 3.8 3.9 ; do
for OLDVERS in 3.7 3.8 3.9 3.10 ; do
if [ -d "/usr/local/munki/Python.framework/Versions/${OLDVERS}" ]; then
/bin/rm -r "/usr/local/munki/Python.framework/Versions/${OLDVERS}"
fi