From 6500b89b80fda2ae4d691ec709277f4bb5cd20d1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 08:33:29 +0300 Subject: [PATCH] Bump mypy from 1.12.1 to 1.13.0 (#2416) Bumps [mypy](https://github.com/python/mypy) from 1.12.1 to 1.13.0. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.12.1...v1.13.0) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 0048910dc..321806964 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,5 +14,5 @@ Django==5.1.2; python_version >= '3.10' -e .[redis,compatible-mypy,oracle] # Overrides: -mypy==1.12.1 +mypy==1.13.0 pyright==1.1.386 diff --git a/setup.py b/setup.py index 00b4ac57a..8b4ad392c 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def find_stub_files(name: str) -> List[str]: # Keep compatible-mypy major.minor version pinned to what we use in CI (requirements.txt) extras_require = { - "compatible-mypy": ["mypy~=1.12.0"], + "compatible-mypy": ["mypy>=1.12,<1.14"], "redis": ["redis"], "oracle": ["oracledb"], }