diff --git a/.github/workflows/mypy.yaml b/.github/workflows/mypy.yaml index ec9c2e6..b23178b 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 b627e7f..8d24259 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