From 4222c569dc4023d342a95cb663bdd63e56d5836d Mon Sep 17 00:00:00 2001 From: Tsvika Shapira Date: Tue, 14 Jul 2026 15:05:26 +0300 Subject: [PATCH] Bump mypy pin to ~=2.3.0 No new strict flags or error codes in 2.3, so the enable-checks list is unchanged; only the "last updated" marker moves to 2.3. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01YCgWyi4DSVmNLf7vZ6q3xu --- project_name/pyproject.toml.jinja | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project_name/pyproject.toml.jinja b/project_name/pyproject.toml.jinja index 087ee04..1d9274d 100644 --- a/project_name/pyproject.toml.jinja +++ b/project_name/pyproject.toml.jinja @@ -109,7 +109,7 @@ docs = [ "mkdocs-section-index ~=0.3.0", ] typing = [ - "mypy ~=2.2.0", + "mypy ~=2.3.0", "ty ~=0.0", # add "*-stubs" and "types-*" packages here (">=0") ] @@ -190,7 +190,7 @@ mypy_path = "stubs" fixed_format_cache = true # set the platform python_version = "3.{{ python_min }}" -# enable checks [last updated: mypy 2.2] +# enable checks [last updated: mypy 2.3] strict = true strict_equality_for_none = true disallow_any_unimported = true