From 6b3d69d6f08fa7d766c8e7de4e9f61a66f582273 Mon Sep 17 00:00:00 2001 From: Lina Tawfik Date: Fri, 27 Jun 2025 18:19:46 -0700 Subject: [PATCH] fix: correct python_version and target-version in tool configs - Set mypy python_version back to 3.10 (was incorrectly set to 0.0.13) - Set ruff target-version back to py310 (was incorrectly set to 0.0.13) These fields should contain Python versions, not package versions. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f2c7a68..a85ad73 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,7 +66,7 @@ addopts = [ asyncio_mode = "auto" [tool.mypy] -python_version = "0.0.13" +python_version = "3.10" strict = true warn_return_any = true warn_unused_configs = true @@ -82,7 +82,7 @@ warn_unreachable = true strict_equality = true [tool.ruff] -target-version = "0.0.13" +target-version = "py310" line-length = 88 [tool.ruff.lint]