From 73759e96112cc3ae4c14677abca730de4b6d4efc Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Mon, 7 Dec 2020 22:32:12 -0500 Subject: [PATCH] Update macos-before-install.sh --- .github/actions/macos-before-install.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/actions/macos-before-install.sh b/.github/actions/macos-before-install.sh index 136108f5..e88f3ef1 100755 --- a/.github/actions/macos-before-install.sh +++ b/.github/actions/macos-before-install.sh @@ -20,7 +20,13 @@ bash --version cd ~ -brew install python@3.9 +#brew install python@3.9 +wget https://www.python.org/ftp/python/3.9.1/python-3.9.1-macosx10.9.pkg +echo "installing..." +sudo installer -pkg ./python-3.9.1-macosx10.9.pkg -target / +which python3 +export p3=$(which python3) +$p3 -V #if [ ! -f python-$MIN_PYTHON_VERSION-macosx10.9.pkg ]; then # wget --quiet https://www.python.org/ftp/python/$MIN_PYTHON_VERSION/python-$MIN_PYTHON_VERSION-macosx10.9.pkg