aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGuy Harris <gharris@sonic.net>2021-03-26 21:32:31 -0700
committerGuy Harris <gharris@sonic.net>2021-03-26 21:32:31 -0700
commit828b43491c01c2ab1c492fda892f1d7e6caf7f0f (patch)
treea3b7f06d8d7dbab73aa00bf2a61cb63bed2469ca /tools
parentbe2b0fc810fb2f2a80e471138dc29f0cbe87b209 (diff)
macos-setup: the current Python is 3.9.2.
While we're at it, capitalize "Arm". (That's how Arm Ltd. is spelling it now, even in the architecture versions, e.g. "Armv8-A".)
Diffstat (limited to 'tools')
-rwxr-xr-xtools/macos-setup.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/macos-setup.sh b/tools/macos-setup.sh
index 2b33a3b1ff..699d55b5b6 100755
--- a/tools/macos-setup.sh
+++ b/tools/macos-setup.sh
@@ -183,12 +183,12 @@ OPUS_VERSION=1.3.1
# 3.7.6 is the final version of Python to have official packages for the
# 64-bit/32-bit variant that supports 10.6 (Snow Leopard) through 10.8
# (Mountain Lion), and 3.9.1 is the first version of Python to support
-# macOS 11 Big Sur and Apple Silicon (arm-based Macs).
+# macOS 11 Big Sur and Apple Silicon (Arm-based Macs).
# So on Mountain Lion, choose 3.7.6, otherwise get the latest stable version
# (3.9.1).
if [[ $DARWIN_MAJOR_VERSION -gt 12 ]]; then
- PYTHON3_VERSION=3.9.1
+ PYTHON3_VERSION=3.9.2
else
PYTHON3_VERSION=3.7.6
fi
@@ -1985,7 +1985,7 @@ install_python3() {
# to use the 64-bit installer (10.9) on earlier releases for now.
local macver=x10.9
if [[ $DARWIN_MAJOR_VERSION -gt 19 ]]; then
- # The macos11.0 installer is required for arm-based macs, which require
+ # The macos11.0 installer is required for Arm-based Macs, which require
# macOS 11 Big Sur. Note that the 'x' was removed from the package name.
macver=11.0
elif [[ $DARWIN_MAJOR_VERSION -lt 13 ]]; then