From e4122fd32e37f06af9461efdef89f811d54b35bc Mon Sep 17 00:00:00 2001 From: Joe Garcia <joe.garcia@ssec.wisc.edu> Date: Sun, 28 Mar 2021 15:03:43 -0500 Subject: [PATCH] prefer python 3.9 --- ShellB3/shallbethree.sh | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/ShellB3/shallbethree.sh b/ShellB3/shallbethree.sh index 1c45e15a..c1618fb4 100755 --- a/ShellB3/shallbethree.sh +++ b/ShellB3/shallbethree.sh @@ -3643,15 +3643,11 @@ mk_apy() { else if [ "${__PYTHON_VERSION}" == 3 ] ; then if isDarwin ; then - if isARM ; then - mk_py39 "$@" - else - mk_py38 "$@" - fi + mk_py39 "$@" elif isNotLinux ; then - mk_py38 "$@" + mk_py39 "$@" elif [ $( nativeOpenSSLVersion ) -ge 102 ] ; then - mk_py38 "$@" + mk_py39 "$@" else oops "System doesn't support OpenSSL 1.0.2 or newer" fi -- GitLab