From 68ce90098a1002cfb18308c981c28e6117cb7b5b Mon Sep 17 00:00:00 2001 From: Michael Hashizume Date: Wed, 1 Jul 2026 12:54:38 -0700 Subject: [PATCH] (PA-8923) Remove EOL macOS versions This commit removes support for macOS 11 (Big Sur), 12 (Monterey), and 13 (Ventura), all of which are end-of-life. --- install.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/install.sh b/install.sh index 5e28c0d..c263f35 100755 --- a/install.sh +++ b/install.sh @@ -513,9 +513,6 @@ if true; then major_version=$(echo "${major_version}" | cut -d '.' -f 1); case $major_version in - "11") platform_version="11";; - "12") platform_version="12";; - "13") platform_version="13";; "14") platform_version="14";; "15") platform_version="15";; "26") platform_version="26";;