Skip to content

Commit 8a585c5

Browse files
authored
Update tox.ini for a valid "isort" version (#11667)
### Py: Update tox.ini for a valid "isort" version isort ``5.11.5`` is the latest valid version for Python 3.7, which is the minimum supported Python version.
1 parent 8ebccac commit 8a585c5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

py/tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ force_single_line = True
3535
; checks linting for CI with stricter exiting when failing.
3636
skip_install = true
3737
deps =
38-
isort==5.12.0
38+
; isort 5.12+ requires python3.8+ specifically.
39+
isort==5.11.5
3940
black==23.1.0
4041
; flake8 6+ requires python3.8+ specifically.
4142
flake8==5.0.4
@@ -55,7 +56,8 @@ commands =
5556
; IMPORTANT: black & isort rewrite files, flake8 merely alerts to the failure.
5657
skip_install = true
5758
deps =
58-
isort==5.12.0
59+
; isort 5.12+ requires python3.8+ specifically.
60+
isort==5.11.5
5961
black==23.1.0
6062
; flake8 6+ requires python3.8+ specifically.
6163
flake8==5.0.4

0 commit comments

Comments
 (0)