From 27e5908762e651c352a73a9b46611f958a6b31ab Mon Sep 17 00:00:00 2001 From: Aleksander Vognild Burkow Date: Mon, 17 Jan 2022 12:58:16 +0100 Subject: [PATCH] Update project to use mypy 931 (#819) --- README.md | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 18bcc56..4aa8f49 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,7 @@ We rely on different `django` and `mypy` versions: | django-stubs | mypy version | django version | python version | ------------ | ---- | ---- | ---- | +| 1.10.0 | 0.931 | 3.2.x | ^3.7 | 1.9.0 | 0.910 | 3.2.x | ^3.6 | 1.8.0 | 0.812 | 3.1.x | ^3.6 | 1.7.0 | 0.790 | 2.2.x \|\| 3.x | ^3.6 diff --git a/setup.py b/setup.py index 549e476..28b10ba 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ with open("README.md") as f: readme = f.read() dependencies = [ - "mypy>=0.910", + "mypy>=0.931", "django", "django-stubs-ext>=0.3.0", "tomli",