Skip to content

Commit 8eed30a

Browse files
author
Michael Howitz
authored
Fixed #34046 -- Fixed pinning flake8 and isort versions in tox.ini.
1 parent f3822d4 commit 8eed30a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ skipsdist = true
99
envlist =
1010
py3
1111
black
12-
flake8 >= 3.7.0
12+
flake8
1313
docs
14-
isort >= 5.1.0
14+
isort
1515

1616
# Add environment to use the default python3 installation
1717
[testenv:py3]
@@ -42,7 +42,7 @@ commands = black --check --diff .
4242
[testenv:flake8]
4343
basepython = python3
4444
usedevelop = false
45-
deps = flake8
45+
deps = flake8 >= 3.7.0
4646
changedir = {toxinidir}
4747
commands = flake8 .
4848

@@ -62,7 +62,7 @@ commands =
6262
[testenv:isort]
6363
basepython = python3
6464
usedevelop = false
65-
deps = isort
65+
deps = isort >= 5.1.0
6666
changedir = {toxinidir}
6767
commands = isort --check-only --diff django tests scripts
6868

0 commit comments

Comments
 (0)