From 67f2ce9e968c8ffc533368c148f56be195fe0629 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Jun 2025 02:57:30 +0000 Subject: [PATCH] Update mypy requirement from <1.16,>=1.13 to >=1.13,<1.17 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.13.0...v1.16.1) --- updated-dependencies: - dependency-name: mypy dependency-version: 1.16.1 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ad0bc780e..c0fd492f4 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def find_stub_files(name: str) -> list[str]: # Keep compatible-mypy major.minor version pinned to what latest django-stubs release uses. extras_require = { - "compatible-mypy": ["mypy>=1.13,<1.16", "django-stubs[compatible-mypy]"], + "compatible-mypy": ["mypy>=1.13,<1.17", "django-stubs[compatible-mypy]"], "coreapi": ["coreapi>=2.0.0"], "markdown": ["types-Markdown>=0.1.5"], }