From b95960b52850c0f35919798e8a1e2e1cff98e100 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sat, 23 Jan 2021 18:01:22 +0000 Subject: [PATCH] Bump mypy from 0.790 to 0.800 (#203) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 34918ef..2ca7fc7 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ EXTRAS_REQUIRE = { "django": DJANGO_REQUIRES, "tests": ["pytest"] + DJANGO_REQUIRES, - "lint": ["flake8==3.8.4", "flake8-bugbear==20.11.1", "mypy==0.790", "pre-commit~=2.4"], + "lint": ["flake8==3.8.4", "flake8-bugbear==20.11.1", "mypy==0.800", "pre-commit~=2.4"], } EXTRAS_REQUIRE["dev"] = EXTRAS_REQUIRE["tests"] + EXTRAS_REQUIRE["lint"] + ["tox"] PYTHON_REQUIRES = ">=3.6"