From 0e4a0ff9eb8005571ec77aeb11bffeefce1f26a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 02:09:22 +0000 Subject: [PATCH] Update mypy requirement from <1.14,>=1.12 to >=1.12,<1.15 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.14.0) --- updated-dependencies: - dependency-name: mypy 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 ef268608e..a8ab12038 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.14", "django-stubs[compatible-mypy]"], + "compatible-mypy": ["mypy>=1.12,<1.15", "django-stubs[compatible-mypy]"], "coreapi": ["coreapi>=2.0.0"], "markdown": ["types-Markdown>=0.1.5"], }