From a924f24701f6d572d55483355dc8aeb2dba92e97 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Feb 2025 16:58:07 +0300 Subject: [PATCH] Update mypy requirement from <1.15,>=1.12 to >=1.12,<1.16 (#729) 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.12.0...v1.15.0) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:development ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a8ab1203..eaefb633 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.12,<1.15", "django-stubs[compatible-mypy]"], + "compatible-mypy": ["mypy>=1.12,<1.16", "django-stubs[compatible-mypy]"], "coreapi": ["coreapi>=2.0.0"], "markdown": ["types-Markdown>=0.1.5"], }