From 0fd183c00397cf74e12cef6bf95480f2e61fc868 Mon Sep 17 00:00:00 2001 From: Yikun Jiang Date: Tue, 11 Feb 2025 21:30:53 +0800 Subject: [PATCH] Remove on communicator mypy Signed-off-by: Yikun Jiang --- .github/workflows/mypy.yaml | 2 ++ mypy.ini | 3 --- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mypy.yaml b/.github/workflows/mypy.yaml index ec9c2e6f531..b23178b826a 100644 --- a/.github/workflows/mypy.yaml +++ b/.github/workflows/mypy.yaml @@ -27,6 +27,7 @@ on: - '**/*.py' - '.github/workflows/mypy.yaml' - 'tools/mypy.sh' + - 'mypy.ini' pull_request: branches: - "main" @@ -39,6 +40,7 @@ on: - '**/*.py' - '.github/workflows/mypy.yaml' - 'tools/mypy.sh' + - 'mypy.ini' jobs: mypy: diff --git a/mypy.ini b/mypy.ini index b627e7f51fc..8d24259ccb3 100644 --- a/mypy.ini +++ b/mypy.ini @@ -9,6 +9,3 @@ ignore_missing_imports = True [mypy-transformers.*] ignore_missing_imports = True -; Remove this after https://github.com/vllm-project/vllm/pull/11324 merged -[mypy-vllm.distributed.device_communicators.base_communicator] -ignore_missing_imports = True