From dc3fb136625f6ac048aa28b3d2fa4a5d820cc35d Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 5 Mar 2021 12:59:35 -0800 Subject: [PATCH] Try using Python 3.9.2 on MacOS. PiperOrigin-RevId: 361207577 Change-Id: Ie23dc0249bd64ee8c07fb58089fe38592298e544 --- tensorflow/tools/ci_build/release/common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/tools/ci_build/release/common.sh b/tensorflow/tools/ci_build/release/common.sh index 94b5e264d4d..d1e5b1327da 100644 --- a/tensorflow/tools/ci_build/release/common.sh +++ b/tensorflow/tools/ci_build/release/common.sh @@ -315,12 +315,12 @@ function activate_venv_macos () { } function setup_python_from_pyenv_macos { - git clone --branch v1.2.21 https://github.com/pyenv/pyenv.git + git clone --branch v1.2.23 https://github.com/pyenv/pyenv.git PYENV_ROOT="$(pwd)/pyenv" export PYENV_ROOT export PATH="$PYENV_ROOT/bin:$PATH" eval "$(pyenv init -)" - PY_VERSION=3.9.0 + PY_VERSION=3.9.2 pyenv install -s "${PY_VERSION}" pyenv local "${PY_VERSION}" python --version