From 13b82a83355ded25ca71feee33a4adeba583707b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 02:49:40 +0000 Subject: [PATCH 1/2] Update mypy requirement from ==1.5.* to >=1.5,<1.7 Updates the requirements on [mypy](https://github.com/python/mypy) to permit the latest version. - [Commits](https://github.com/python/mypy/compare/v1.5.0...v1.6.0) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 982cc657b..691a47d06 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,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.5.*"], + "compatible-mypy": ["mypy>=1.5,<1.7"], "coreapi": ["coreapi>=2.0.0"], "markdown": ["types-Markdown>=0.1.5"], } From f4a29b619e159458bf9e3cf39770764405431c65 Mon Sep 17 00:00:00 2001 From: Marti Raudsepp Date: Wed, 11 Oct 2023 11:08:46 +0300 Subject: [PATCH 2/2] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 691a47d06..765708fc3 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,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.5,<1.7"], + "compatible-mypy": ["mypy~=1.6.0"], "coreapi": ["coreapi>=2.0.0"], "markdown": ["types-Markdown>=0.1.5"], }