From 2495bee24b38479ea16f0a4987c14411742ed26b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 09:03:55 +0000 Subject: [PATCH] Bump mypy from 1.8.0 to 1.9.0 Bumps [mypy](https://github.com/python/mypy) from 1.8.0 to 1.9.0. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.8.0...1.9.0) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 48a3251bf..cf845914d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,4 +14,4 @@ Django==5.0.3; python_version >= '3.10' -e .[compatible-mypy] # Overrides: -mypy==1.8.0 +mypy==1.9.0 diff --git a/setup.py b/setup.py index ef37e0432..c2b55b837 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,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.8.0"], + "compatible-mypy": ["mypy>=1.8,<1.10"], } setup(