init v0.23.0

Signed-off-by: Sun Ruoxi <sunruoxi@4paradigm.com>
This commit is contained in:
2026-08-27 15:11:51 +08:00
parent b582a8e7d1
commit 7f8a1b1f7a
2849 changed files with 712887 additions and 22001 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved.
@@ -30,9 +30,13 @@ if [ $PYTHON_VERSION == "local" ]; then
PYTHON_VERSION=$(python -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")')
fi
# Define colors
GREEN='\033[0;32m'
NC='\033[0m' # No Color
run_mypy() {
echo "Running mypy on $1"
mypy --check-untyped-defs --follow-imports skip --python-version "${PYTHON_VERSION}" "$@"
echo -e "${GREEN}Running mypy for $1 on python version: ${PYTHON_VERSION}${NC}"
mypy --follow-imports skip --check-untyped-defs --python-version "${PYTHON_VERSION}" "$@"
}
run_mypy vllm_ascend