Update mypy automation to Python 3.13

This commit is contained in:
Andrew Miner
2025-10-13 17:07:17 -06:00
parent 5f15dac9e9
commit 516748bee5
+3 -6
View File
@@ -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"
]