From 83d07dd6744ebdf2fcf1d3741465e68fd34861f4 Mon Sep 17 00:00:00 2001 From: Nikita Shulga Date: Thu, 22 Sep 2022 16:33:24 -0700 Subject: [PATCH] Move to rc2 of 3.11 python Need it to get several convenience functions --- common/install_cpython.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/install_cpython.sh b/common/install_cpython.sh index f393de202..f1db35a4c 100755 --- a/common/install_cpython.sh +++ b/common/install_cpython.sh @@ -67,9 +67,9 @@ function build_cpython { check_var $py_ver check_var $PYTHON_DOWNLOAD_URL local py_ver_folder=$py_ver - # Only beta version of 3.11 is available right now + # Only rc2 version of 3.11 is available right now if [ "$py_ver" = "3.11.0" ]; then - py_ver=$py_ver"b1" + py_ver=$py_ver"rc2" fi wget -q $PYTHON_DOWNLOAD_URL/$py_ver_folder/Python-$py_ver.tgz if [ $(lex_pyver $py_ver) -lt $(lex_pyver 3.3) ]; then