We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac9043d commit f0ae346Copy full SHA for f0ae346
tox.ini
@@ -51,11 +51,14 @@ commands =
51
52
# isort is an imports sorter for python: https://github.com/timothycrosley/isort
53
# The following target sorts the import according to .isort.cfg file.
54
+# Pin isort to the last release prior to 5.0.0, which resulted in import
55
+# statements being flagged as improperly sorted where previously they were
56
+# not. See https://timothycrosley.github.io/isort/docs/major_releases/introducing_isort_5/.
57
[testenv:isort]
58
basepython = python3
59
skip_install = true
60
deps =
- isort
61
+ isort==4.3.21
62
seed-isort-config
63
commands =
64
isort -rc -w 120 \
0 commit comments