From 407178b47a03c7920e657fce108920b9963f6349 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 May 2026 19:33:53 +0000 Subject: [PATCH] build(deps-dev): update mypy requirement from ~=1.1 to >=1.1,<3.0 Updates the requirements on [mypy](https://github.com/python/mypy) to permit the latest version. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.1.1...v2.0.0) --- updated-dependencies: - dependency-name: mypy dependency-version: 2.0.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4b575eb1..4fdf6bd0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,7 @@ test = ["pytest", "pytest-cov", "pretend", "coverage[toml]"] lint = [ "bandit", # "interrogate >= 1.7.0", - "mypy ~= 1.1", + "mypy >= 1.1,< 3.0", # NOTE(ww): ruff is under active development, so we pin conservatively here # and let Dependabot periodically perform this update. "ruff < 0.15.13",