From 447ae9aa4404303eb87ff3ddf549a00815836d26 Mon Sep 17 00:00:00 2001 From: l3ocho Date: Wed, 30 Jul 2025 20:58:43 -0400 Subject: [PATCH] Fix mypy Python version to match system Python 3.12 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Corrected mypy python_version from 3.9 to 3.12 to match system Python - Type checking still passes with all annotations intact 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 43f781b..ae2288c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -94,7 +94,7 @@ known_first_party = ["wikijs"] known_third_party = ["pytest", "requests", "pydantic"] [tool.mypy] -python_version = "3.9" +python_version = "3.12" warn_return_any = true warn_unused_configs = true disallow_untyped_defs = true