Skip to content

Commit b19484d

Browse files
committed
Use pymorphy3 instead of pymorphy2
1 parent 9fa6f67 commit b19484d

File tree

4 files changed

+60
-29
lines changed

4 files changed

+60
-29
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
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.8", "3.9", "3.10"] # Not 3.11 yet, because pymorphy2 is not updated to 3.11
15+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1616

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

poetry.lock

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

poetry.toml

Lines changed: 0 additions & 2 deletions
This file was deleted.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ authors = ["insolor <[email protected]>"]
66
license = "MIT"
77

88
[tool.poetry.dependencies]
9-
python = "^3.8"
10-
pymorphy2 = "^0.9.1"
9+
python = "^3.9"
10+
pymorphy3 = "^2.0.2"
1111

1212
[tool.poetry.group.dev.dependencies]
1313
flake8 = "^5.0.4"

0 commit comments

Comments
 (0)