We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3822d4 commit 8eed30aCopy full SHA for 8eed30a
tox.ini
@@ -9,9 +9,9 @@ skipsdist = true
9
envlist =
10
py3
11
black
12
- flake8 >= 3.7.0
+ flake8
13
docs
14
- isort >= 5.1.0
+ isort
15
16
# Add environment to use the default python3 installation
17
[testenv:py3]
@@ -42,7 +42,7 @@ commands = black --check --diff .
42
[testenv:flake8]
43
basepython = python3
44
usedevelop = false
45
-deps = flake8
+deps = flake8 >= 3.7.0
46
changedir = {toxinidir}
47
commands = flake8 .
48
@@ -62,7 +62,7 @@ commands =
62
[testenv:isort]
63
64
65
-deps = isort
+deps = isort >= 5.1.0
66
67
commands = isort --check-only --diff django tests scripts
68
0 commit comments