Skip to content

Commit e6cc1ae

Browse files
committed
Add isort, update pyproject.toml file style
1 parent 9ef0fce commit e6cc1ae

File tree

3 files changed

+26
-79
lines changed

3 files changed

+26
-79
lines changed

Diff for: .github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.7", "3.8", "3.9", "3.10"] # Not 3.11 yet, because pymorphy2 is not updated to 3.11
15+
python-version: ["3.8", "3.9", "3.10"] # Not 3.11 yet, because pymorphy2 is not updated to 3.11
1616

1717
steps:
1818
- uses: actions/checkout@v3

Diff for: poetry.lock

+19-76
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: pyproject.toml

+6-2
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,22 @@ authors = ["insolor <[email protected]>"]
66
license = "MIT"
77

88
[tool.poetry.dependencies]
9-
python = "^3.7"
9+
python = "^3.8"
1010
pymorphy2 = "^0.9.1"
1111

12-
[tool.poetry.dev-dependencies]
12+
[tool.poetry.group.dev.dependencies]
1313
flake8 = "^5.0.4"
1414
pytest = "^7.4.0"
1515
pytest-cov = "^4.1.0"
1616
black = "^23.3.0"
17+
isort = "^5.12.0"
1718

1819
[build-system]
1920
requires = ["poetry-core>=1.0.0"]
2021
build-backend = "poetry.core.masonry.api"
2122

2223
[tool.black]
2324
line-length = 120
25+
26+
[tool.isort]
27+
profile = "black"

0 commit comments

Comments
 (0)