From 177afbc2c373cbf7bce9bdb9c76e121090e178e4 Mon Sep 17 00:00:00 2001 From: Jake Herrmann Date: Fri, 17 Jan 2025 15:48:52 -0900 Subject: [PATCH] upgrade to mypy action v0.15.0 --- .github/workflows/static-analysis.yml | 2 +- pyproject.toml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index dcb845b..e5bf444 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -12,4 +12,4 @@ jobs: uses: ASFHyP3/actions/.github/workflows/reusable-ruff.yml@v0.14.0 call-mypy-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-mypy.yml@v0.14.0 + uses: ASFHyP3/actions/.github/workflows/reusable-mypy.yml@v0.15.0 diff --git a/pyproject.toml b/pyproject.toml index d9cf0cf..6743cd7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -79,3 +79,7 @@ warn_unused_ignores = true warn_unreachable = true strict_equality = true check_untyped_defs = true +install_types = true +non_interactive = true +pretty = true +disable_error_code = ["import-untyped"]