From 516748bee5534c9101674b8b9d8ddd5bfdb2d318 Mon Sep 17 00:00:00 2001 From: Andrew Miner Date: Mon, 13 Oct 2025 17:07:17 -0600 Subject: [PATCH] Update mypy automation to Python 3.13 --- mcpacker/__init___test.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/mcpacker/__init___test.py b/mcpacker/__init___test.py index 2bfa7f1..d3f820c 100644 --- a/mcpacker/__init___test.py +++ b/mcpacker/__init___test.py @@ -4,12 +4,9 @@ import subprocess def test_typeCompliance(): command = [ - "mypy", - #"--allow-untyped-defs", - #"--follow-imports", "skip", - #"--ignore-missing-imports", - #"--no-check-untyped-defs", - "--python-version", "3.10", + "./.venv/bin/mypy", + "--check-untyped-defs", + "--python-version", "3.13", "--show-error-codes", "mcpacker" ]