Skip to content

Commit b3a1acc

Browse files
committed
build(isort): Update isort to 5.x
1 parent 4f008d9 commit b3a1acc

File tree

4 files changed

+29
-27
lines changed

4 files changed

+29
-27
lines changed

poetry.lock

Lines changed: 23 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ black = {version="==19.10b0", python="^3.6"}
1717
doc8 = "*"
1818
docutils = "*"
1919
flake8 = "*"
20-
isort = "*"
20+
isort = [
21+
{version="<5", python="<3.6"},
22+
{version="*", python=">=3.6"}
23+
]
2124
pytest = [
2225
{version="<4.7.0", python="<3"},
2326
{version="*", python=">=3"}

requirements/dev.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
flake8==3.7.7
2-
isort==4.3.20
2+
isort<=4.4;python_version<'3.6'
3+
isort>=5;python_version>='3.6'

setup.cfg

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,5 @@ include_trailing_comma = true
4747
multi_line_output = 3
4848
known_pytest = pytest,py
4949
known_first_party = libvcs
50-
split_before_closing_bracket = true
5150
sections = FUTURE,STDLIB,PYTEST,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
5251
line_length = 88
53-
not_skip = __init__.py

0 commit comments

Comments
 (0)