From f7d1f73b9851b8e24a01fb18dbbab90b53c594db Mon Sep 17 00:00:00 2001 From: Nengjun Ma Date: Thu, 13 Nov 2025 16:47:24 +0800 Subject: [PATCH] [CI] Remove unsupported python 3.9 format check (#4172) ### What this PR does / why we need it? - Fixes the lint test fail for python 3.9, as python 3.9 is not support now. - vLLM version: v0.11.0 - vLLM main: https://github.com/vllm-project/vllm/commit/2918c1b49c88c29783c86f78d2c4221cb9622379 Signed-off-by: leo-pony --- .pre-commit-config.yaml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5dd921b3..34819347 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -68,13 +68,6 @@ repos: # language: system # types: [python] # stages: [pre-commit] # Don't run in CI - - id: mypy-3.9 # TODO: Use https://github.com/pre-commit/mirrors-mypy when mypy setup is less awkward - name: Run mypy for Python 3.9 - entry: tools/mypy.sh 1 "3.9" - # Use system python because vllm installation is required - language: system - types: [python] - stages: [manual] # Only run in CI - id: mypy-3.10 # TODO: Use https://github.com/pre-commit/mirrors-mypy when mypy setup is less awkward name: Run mypy for Python 3.10 entry: tools/mypy.sh 1 "3.10"