已合并
[feat][v2.10]remove Python 3.9 support. #40336
thickhair创建于 7月7日
[feat][v2.10]remove Python 3.9 support. #40336
已合并
thickhair创建于 7月7日
1 个文件变更+4-4
@@ -3,15 +3,15 @@
3set -e3set -e
4 4 
5CUR_DIR=$(dirname $(readlink -f $0))5CUR_DIR=$(dirname $(readlink -f $0))
6-SUPPORTED_PY_VERSION=(3.9 3.10 3.11 3.12 3.13)6+SUPPORTED_PY_VERSION=(3.10 3.11 3.12 3.13)
7-# Default supported python version is 3.97+# Default supported python version is 3.10
8-PY_VERSION="3.9"8+PY_VERSION="3.10"
9 9 
10# Parse arguments inside script10# Parse arguments inside script
11function parse_script_args() {11function parse_script_args() {
12 local args_num=012 local args_num=0
13 if [[ "x${1}" = "x" ]]; then13 if [[ "x${1}" = "x" ]]; then
14- # default: bash build.sh (python3.9)14+ # default: bash build.sh (python3.10)
15 return 015 return 0
16 fi16 fi
17 17