Skip to content

Commit 45a84dc

Browse files
Bump the required group across 1 directory with 9 updates
Bumps the required group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [flake8](https://github.com/pycqa/flake8) | `7.1.1` | `7.1.2` | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.6.0` | `0.6.2` | | [isort](https://github.com/PyCQA/isort) | `6.0.0` | `6.0.1` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.6.1` | `9.6.7` | | [mkdocstrings[python]](https://github.com/mkdocstrings/mkdocstrings) | `0.28.2` | `0.29.0` | | [mkdocstrings-python](https://github.com/mkdocstrings/python) | `1.16.2` | `1.16.5` | | [mypy](https://github.com/python/mypy) | `1.14.1` | `1.15.0` | | [pytest](https://github.com/pytest-dev/pytest) | `8.3.4` | `8.3.5` | | [setuptools-scm[toml]](https://github.com/pypa/setuptools-scm) | `8.1.0` | `8.2.0` | Updates `flake8` from 7.1.1 to 7.1.2 - [Commits](PyCQA/flake8@7.1.1...7.1.2) Updates `pydoclint` from 0.6.0 to 0.6.2 - [Release notes](https://github.com/jsh9/pydoclint/releases) - [Changelog](https://github.com/jsh9/pydoclint/blob/main/CHANGELOG.md) - [Commits](jsh9/pydoclint@0.6.0...0.6.2) Updates `isort` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/PyCQA/isort/releases) - [Changelog](https://github.com/PyCQA/isort/blob/main/CHANGELOG.md) - [Commits](PyCQA/isort@6.0.0...6.0.1) Updates `mkdocs-material` from 9.6.1 to 9.6.7 - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Commits](squidfunk/mkdocs-material@9.6.1...9.6.7) Updates `mkdocstrings[python]` from 0.28.2 to 0.29.0 - [Release notes](https://github.com/mkdocstrings/mkdocstrings/releases) - [Changelog](https://github.com/mkdocstrings/mkdocstrings/blob/main/CHANGELOG.md) - [Commits](mkdocstrings/mkdocstrings@0.28.2...0.29.0) Updates `mkdocstrings-python` from 1.16.2 to 1.16.5 - [Release notes](https://github.com/mkdocstrings/python/releases) - [Changelog](https://github.com/mkdocstrings/python/blob/main/CHANGELOG.md) - [Commits](mkdocstrings/python@1.16.2...1.16.5) Updates `mypy` from 1.14.1 to 1.15.0 - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](python/mypy@v1.14.1...v1.15.0) Updates `pytest` from 8.3.4 to 8.3.5 - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](pytest-dev/pytest@8.3.4...8.3.5) Updates `setuptools-scm[toml]` from 8.1.0 to 8.2.0 - [Release notes](https://github.com/pypa/setuptools-scm/releases) - [Changelog](https://github.com/pypa/setuptools-scm/blob/main/CHANGELOG.md) - [Commits](pypa/setuptools-scm@v8.1.0...v8.2.0) --- updated-dependencies: - dependency-name: flake8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: required - dependency-name: pydoclint dependency-type: direct:production update-type: version-update:semver-patch dependency-group: required - dependency-name: isort dependency-type: direct:production update-type: version-update:semver-patch dependency-group: required - dependency-name: mkdocs-material dependency-type: direct:production update-type: version-update:semver-patch dependency-group: required - dependency-name: mkdocstrings[python] dependency-type: direct:production update-type: version-update:semver-minor dependency-group: required - dependency-name: mkdocstrings-python dependency-type: direct:production update-type: version-update:semver-patch dependency-group: required - dependency-name: mypy dependency-type: direct:production update-type: version-update:semver-minor dependency-group: required - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: required - dependency-name: setuptools-scm[toml] dependency-type: direct:production update-type: version-update:semver-minor dependency-group: required ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 97885f8 commit 45a84dc

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[build-system]
55
requires = [
66
"setuptools == 75.8.0",
7-
"setuptools_scm[toml] == 8.1.0",
7+
"setuptools_scm[toml] == 8.2.0",
88
"frequenz-repo-config[lib] == 0.12.3",
99
]
1010
build-backend = "setuptools.build_meta"
@@ -46,27 +46,27 @@ email = "[email protected]"
4646

4747
[project.optional-dependencies]
4848
dev-flake8 = [
49-
"flake8 == 7.1.1",
49+
"flake8 == 7.1.2",
5050
"flake8-docstrings == 1.7.0",
5151
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
52-
"pydoclint == 0.6.0",
52+
"pydoclint == 0.6.2",
5353
"pydocstyle == 6.3.0",
5454
]
55-
dev-formatting = ["black == 25.1.0", "isort == 6.0.0"]
55+
dev-formatting = ["black == 25.1.0", "isort == 6.0.1"]
5656
dev-mkdocs = [
5757
"black == 25.1.0",
5858
"Markdown==3.7",
5959
"mike == 2.1.3",
6060
"mkdocs-gen-files == 0.5.0",
6161
"mkdocs-literate-nav == 0.6.1",
6262
"mkdocs-macros-plugin == 1.3.7",
63-
"mkdocs-material == 9.6.1",
64-
"mkdocstrings[python] == 0.28.2",
65-
"mkdocstrings-python == 1.16.2",
63+
"mkdocs-material == 9.6.7",
64+
"mkdocstrings[python] == 0.29.0",
65+
"mkdocstrings-python == 1.16.5",
6666
"frequenz-repo-config[lib] == 0.12.3",
6767
]
6868
dev-mypy = [
69-
"mypy == 1.14.1",
69+
"mypy == 1.15.0",
7070
"types-Markdown == 3.7.0.20241204",
7171
"types-protobuf == 5.29.1.20250208",
7272
# For checking the noxfile, docs/ script, and tests
@@ -84,7 +84,7 @@ dev-pylint = [
8484
"pandas >= 2, < 3", # Only required for example
8585
]
8686
dev-pytest = [
87-
"pytest == 8.3.4",
87+
"pytest == 8.3.5",
8888
"frequenz-repo-config[extra-lint-examples] == 0.12.3",
8989
"pytest-mock == 3.14.0",
9090
"pytest-asyncio == 0.25.3",

src/frequenz/client/reporting/cli/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def main() -> None:
104104

105105

106106
# pylint: disable=too-many-arguments, too-many-locals
107-
async def run(
107+
async def run( # noqa: DOC502
108108
*,
109109
microgrid_id: int,
110110
component_id: list[str],

0 commit comments

Comments
 (0)