|
5 | 5 | requires = [ |
6 | 6 | "setuptools == 68.1.0", |
7 | 7 | "setuptools_scm[toml] == 7.1.0", |
8 | | - "frequenz-repo-config[lib] == 0.9.2", |
| 8 | + "frequenz-repo-config[lib] == 0.10.0", |
9 | 9 | ] |
10 | 10 | build-backend = "setuptools.build_meta" |
11 | 11 |
|
|
48 | 48 |
|
49 | 49 | [project.optional-dependencies] |
50 | 50 | dev-flake8 = [ |
51 | | - "flake8 == 7.1.0", |
| 51 | + "flake8 == 7.1.1", |
52 | 52 | "flake8-docstrings == 1.7.0", |
53 | 53 | "flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml |
54 | | - "pydoclint == 0.5.3", |
| 54 | + "pydoclint == 0.5.9", |
55 | 55 | "pydocstyle == 6.3.0", |
56 | 56 | ] |
57 | | -dev-formatting = ["black == 24.4.2", "isort == 5.13.2"] |
| 57 | +dev-formatting = ["black == 24.8.0", "isort == 5.13.2"] |
58 | 58 | dev-mkdocs = [ |
59 | | - "black == 24.4.2", |
60 | | - "Markdown==3.6", |
61 | | - "mike == 2.1.2", |
| 59 | + "black == 24.8.0", |
| 60 | + "Markdown==3.7", |
| 61 | + "mike == 2.1.3", |
62 | 62 | "mkdocs-gen-files == 0.5.0", |
63 | 63 | "mkdocs-literate-nav == 0.6.1", |
64 | | - "mkdocs-macros-plugin == 1.0.5", |
65 | | - "mkdocs-material == 9.5.27", |
66 | | - "mkdocstrings[python] == 0.25.1", |
67 | | - "mkdocstrings-python == 1.10.5", |
68 | | - "frequenz-repo-config[lib] == 0.9.2", |
| 64 | + "mkdocs-macros-plugin == 1.2.0", |
| 65 | + "mkdocs-material == 9.5.39", |
| 66 | + "mkdocstrings[python] == 0.26.1", |
| 67 | + "mkdocstrings-python == 1.11.1", |
| 68 | + "frequenz-repo-config[lib] == 0.10.0", |
69 | 69 | ] |
70 | 70 | dev-mypy = [ |
71 | | - "mypy == 1.10.1", |
72 | | - "types-Markdown == 3.6.0.20240316", |
| 71 | + "mypy == 1.11.2", |
| 72 | + "types-Markdown == 3.7.0.20240822", |
73 | 73 | # For checking the noxfile, docs/ script, and tests |
74 | 74 | "pymdownx-superfence-filter-lines[dev-mkdocs,dev-noxfile,dev-pytest]", |
75 | 75 | ] |
76 | | -dev-noxfile = ["nox == 2024.4.15", "frequenz-repo-config[lib] == 0.9.2"] |
| 76 | +dev-noxfile = ["nox == 2024.4.15", "frequenz-repo-config[lib] == 0.10.0"] |
77 | 77 | dev-pylint = [ |
78 | | - "pylint == 3.2.5", |
| 78 | + "pylint == 3.3.1", |
79 | 79 | # For checking the noxfile, docs/ script, and tests |
80 | 80 | "pymdownx-superfence-filter-lines[dev-mkdocs,dev-noxfile,dev-pytest]", |
81 | 81 | ] |
82 | 82 | dev-pytest = [ |
83 | | - "pytest == 8.2.2", |
84 | | - "frequenz-repo-config[extra-lint-examples] == 0.9.2", |
| 83 | + "pytest == 8.3.3", |
| 84 | + "frequenz-repo-config[extra-lint-examples] == 0.10.0", |
85 | 85 | "pytest-mock == 3.14.0", |
86 | | - "pytest-asyncio == 0.23.7", |
87 | | - "async-solipsism == 0.6", |
| 86 | + "pytest-asyncio == 0.24.0", |
| 87 | + "async-solipsism == 0.7", |
88 | 88 | ] |
89 | 89 | dev = [ |
90 | 90 | "pymdownx-superfence-filter-lines[dev-mkdocs,dev-flake8,dev-formatting,dev-mkdocs,dev-mypy,dev-noxfile,dev-pylint,dev-pytest]", |
@@ -139,10 +139,14 @@ disable = [ |
139 | 139 | # pylint's unsubscriptable check is buggy and is not needed because |
140 | 140 | # it is a type-check, for which we already have mypy. |
141 | 141 | "unsubscriptable-object", |
| 142 | + # Checked by mypy |
| 143 | + "no-member", |
142 | 144 | # Checked by flake8 |
| 145 | + "f-string-without-interpolation", |
143 | 146 | "redefined-outer-name", |
144 | 147 | "unused-import", |
145 | 148 | "line-too-long", |
| 149 | + "missing-function-docstring", |
146 | 150 | "unused-variable", |
147 | 151 | "unnecessary-lambda-assignment", |
148 | 152 | ] |
|
0 commit comments