|
1 |
| -[build-system] |
2 |
| -requires = ["poetry>=0.12"] |
3 |
| -build-backend = "poetry.masonry.api" |
4 |
| - |
5 |
| - |
6 |
| -[tool.nitpick] |
7 |
| -style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/master/styles/nitpick-style-wemake.toml" |
8 |
| - |
9 |
| - |
10 | 1 | [tool.poetry]
|
11 | 2 | name = "lambdas"
|
12 | 3 | version = "0.1.0"
|
@@ -38,32 +29,41 @@ classifiers = [
|
38 | 29 | "Intended Audience :: Developers",
|
39 | 30 | "Operating System :: OS Independent",
|
40 | 31 | "Topic :: Software Development :: Libraries :: Python Modules",
|
41 |
| - "Topic :: Utilities" |
| 32 | + "Topic :: Utilities", |
| 33 | + "Typing :: Typed" |
42 | 34 | ]
|
43 | 35 |
|
44 | 36 | [tool.poetry.dependencies]
|
45 |
| -python = "^3.7" |
| 37 | +python = ">=3.8.1,<4" |
46 | 38 | typing-extensions = ">=4.0,<5.0"
|
47 | 39 |
|
48 |
| -[tool.poetry.dev-dependencies] |
49 |
| -mypy = "^0.982" |
50 |
| -wemake-python-styleguide = "^0.17.0" |
| 40 | +[tool.poetry.group.dev.dependencies] |
| 41 | +mypy = "^1.5.1" |
| 42 | + |
| 43 | +wemake-python-styleguide = "^0.18" |
51 | 44 | flake8-pytest = "^1.4"
|
52 |
| -flake8-pytest-style = "^1.6.0" |
53 |
| -flake8-pyi = "^22.8" |
54 |
| -nitpick = "^0.32.0" |
| 45 | +flake8-pytest-style = "^1.7.2" |
| 46 | +flake8-pyi = "^23.6.0" |
| 47 | +nitpick = "^0.34.0" |
55 | 48 |
|
56 |
| -safety = "^2.1" |
| 49 | +safety = "^2.3.5" |
57 | 50 |
|
58 |
| -pytest = "^7.1" |
59 |
| -pytest-cov = "^4.0" |
60 |
| -pytest-randomly = "^3.12" |
61 |
| -pytest-mypy-plugins = "^1.10" |
| 51 | +pytest = "^7.4.2" |
| 52 | +pytest-cov = "^4.1.0" |
| 53 | +pytest-randomly = "^3.15.0" |
| 54 | +pytest-mypy-plugins = "^3.0.0" |
62 | 55 |
|
63 |
| -sphinx = "^5.1" |
64 |
| -sphinx-autodoc-typehints = "^1.19" |
65 |
| -sphinxcontrib-mermaid = "^0.7" |
| 56 | +sphinx = "^7.1" |
| 57 | +sphinx-autodoc-typehints = "^1.24.0" |
| 58 | +sphinxcontrib-mermaid = "^0.9.2" |
66 | 59 | sphinx-typlog-theme = "^0.8.0"
|
67 |
| -doc8 = "^1.0.0" |
68 |
| -m2r2 = "^0.3.3" |
69 |
| -tomlkit = "^0.11.4" |
| 60 | +doc8 = "^1.1.1" |
| 61 | +m2r2 = "^0.3.3.post2" |
| 62 | +tomlkit = "^0.12.1" |
| 63 | + |
| 64 | +[tool.nitpick] |
| 65 | +style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/0.18.0/styles/nitpick-style-wemake.toml" |
| 66 | + |
| 67 | +[build-system] |
| 68 | +requires = ["poetry-core>=1.6.0"] |
| 69 | +build-backend = "poetry.core.masonry.api" |
0 commit comments