diff --git a/setup.py b/setup.py index 27df529..6c39518 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ EXTRAS_REQUIRE = { "django": DJANGO_REQUIRES, "tests": ["pytest"] + DJANGO_REQUIRES, - "lint": ["flake8==4.0.1", "flake8-bugbear==21.9.2", "mypy==0.910", "pre-commit~=2.4"], + "lint": ["flake8==4.0.1", "flake8-bugbear==21.11.29", "mypy==0.910", "pre-commit~=2.4"], } EXTRAS_REQUIRE["dev"] = EXTRAS_REQUIRE["tests"] + EXTRAS_REQUIRE["lint"] + ["tox"] PYTHON_REQUIRES = ">=3.6"