From 280d63d0d68ebd7a18c4711d39ce131ad4e3cd90 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Jun 2026 02:03:56 +0000 Subject: [PATCH] Update mypy requirement from <2,>=1.10 to >=1.10,<3 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.10.0...v2.1.0) --- updated-dependencies: - dependency-name: mypy dependency-version: 2.1.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8ac4cc9..4e62d0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ dependencies = [ dev = [ "pytest>=9.0.3,<10", # 9.0.3 fixes CVE-2025-71176 "ruff>=0.5,<1", - "mypy>=1.10,<2", + "mypy>=1.10,<3", "pip-audit>=2.7,<3", ] diff --git a/requirements.txt b/requirements.txt index 8c3424c..8efd8fd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,5 +9,5 @@ numpy>=1.26,<3 # exposure heatmap # dev tooling pytest>=9.0.3,<10 # 9.0.3 fixes CVE-2025-71176 ruff>=0.5,<1 -mypy>=1.10,<2 +mypy>=1.10,<3 pip-audit>=2.7,<3