Skip to content

Commit

Permalink
Fixed #34046 -- Fixed pinning flake8 and isort versions in tox.ini.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz authored Sep 24, 2022
1 parent f3822d4 commit 8eed30a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ skipsdist = true
envlist =
py3
black
flake8 >= 3.7.0
flake8
docs
isort >= 5.1.0
isort

# Add environment to use the default python3 installation
[testenv:py3]
Expand Down Expand Up @@ -42,7 +42,7 @@ commands = black --check --diff .
[testenv:flake8]
basepython = python3
usedevelop = false
deps = flake8
deps = flake8 >= 3.7.0
changedir = {toxinidir}
commands = flake8 .

Expand All @@ -62,7 +62,7 @@ commands =
[testenv:isort]
basepython = python3
usedevelop = false
deps = isort
deps = isort >= 5.1.0
changedir = {toxinidir}
commands = isort --check-only --diff django tests scripts

Expand Down

0 comments on commit 8eed30a

Please sign in to comment.