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