From 6771e55b018644a2260d6332cd062255784fa032 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 9 Jul 2019 12:38:25 +0000 Subject: [PATCH] Bump flake8 from 3.7.7 to 3.7.8 Bumps [flake8](https://gitlab.com/pycqa/flake8) from 3.7.7 to 3.7.8. - [Release notes](https://gitlab.com/pycqa/flake8/tags) - [Commits](https://gitlab.com/pycqa/flake8/compare/3.7.7...3.7.8) Signed-off-by: dependabot-preview[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 760d6f6..6c113cc 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ EXTRAS_REQUIRE = { "django": DJANGO_REQUIRES, "tests": ["pytest"] + DJANGO_REQUIRES, - "lint": ["flake8==3.7.7", "flake8-bugbear==19.3.0", "pre-commit~=1.17"], + "lint": ["flake8==3.7.8", "flake8-bugbear==19.3.0", "pre-commit~=1.17"], } EXTRAS_REQUIRE["dev"] = EXTRAS_REQUIRE["tests"] + EXTRAS_REQUIRE["lint"] + ["tox"] PYTHON_REQUIRES = ">=3.5"