Skip to content

Commit 75e50e5

Browse files
authored
Bump the optional group with 12 updates (#10)
Updates the requirements on [pydoclint](https://github.com/jsh9/pydoclint), [isort](https://github.com/pycqa/isort), [markdown](https://github.com/Python-Markdown/markdown), [mkdocs-macros-plugin](https://github.com/fralau/mkdocs_macros_plugin), [mkdocs-material](https://github.com/squidfunk/mkdocs-material), [mkdocstrings[python]](https://github.com/mkdocstrings/mkdocstrings), [mypy](https://github.com/python/mypy), [types-markdown](https://github.com/python/typeshed), [pylint](https://github.com/pylint-dev/pylint), [pytest](https://github.com/pytest-dev/pytest), [pytest-mock](https://github.com/pytest-dev/pytest-mock) and [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) to permit the latest version. Updates `pydoclint` from 0.3.2 to 0.4.1 - [Release notes](https://github.com/jsh9/pydoclint/releases) - [Changelog](https://github.com/jsh9/pydoclint/blob/main/CHANGELOG.md) - [Commits](jsh9/pydoclint@0.3.2...0.4.1) Updates `isort` from 5.12.0 to 5.13.2 - [Release notes](https://github.com/pycqa/isort/releases) - [Changelog](https://github.com/PyCQA/isort/blob/main/CHANGELOG.md) - [Commits](PyCQA/isort@5.12.0...5.13.2) Updates `markdown` from 3.4.4 to 3.5.2 - [Release notes](https://github.com/Python-Markdown/markdown/releases) - [Changelog](https://github.com/Python-Markdown/markdown/blob/master/docs/changelog.md) - [Commits](Python-Markdown/markdown@3.4.4...3.5.2) Updates `mkdocs-macros-plugin` from 1.0.4 to 1.0.5 - [Release notes](https://github.com/fralau/mkdocs_macros_plugin/releases) - [Changelog](https://github.com/fralau/mkdocs-macros-plugin/blob/master/CHANGELOG.md) - [Commits](fralau/mkdocs-macros-plugin@v1.0.4...v1.0.5) Updates `mkdocs-material` from 9.3.1 to 9.5.11 - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Commits](squidfunk/mkdocs-material@9.3.1...9.5.11) Updates `mkdocstrings[python]` from 0.23.0 to 0.24.1 - [Release notes](https://github.com/mkdocstrings/mkdocstrings/releases) - [Changelog](https://github.com/mkdocstrings/mkdocstrings/blob/main/CHANGELOG.md) - [Commits](mkdocstrings/mkdocstrings@0.23.0...0.24.1) Updates `mypy` from 1.5.1 to 1.8.0 - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](python/mypy@v1.5.1...v1.8.0) Updates `types-markdown` from 3.4.2.10 to 3.5.0.20240129 - [Commits](https://github.com/python/typeshed/commits) Updates `pylint` from 3.0.2 to 3.1.0 - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](pylint-dev/pylint@v3.0.2...v3.1.0) Updates `pytest` from 8.0.0 to 8.0.2 - [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.0.0...8.0.2) Updates `pytest-mock` from 3.11.1 to 3.12.0 - [Release notes](https://github.com/pytest-dev/pytest-mock/releases) - [Changelog](https://github.com/pytest-dev/pytest-mock/blob/main/CHANGELOG.rst) - [Commits](pytest-dev/pytest-mock@v3.11.1...v3.12.0) Updates `pytest-asyncio` from 0.21.1 to 0.23.5 - [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases) - [Commits](pytest-dev/pytest-asyncio@v0.21.1...v0.23.5)
2 parents cc8a8e5 + 1821a2d commit 75e50e5

File tree

2 files changed

+13
-16
lines changed

2 files changed

+13
-16
lines changed

docs/_scripts/macros.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,7 @@ def _slugify(text: str) -> str:
2727
Returns:
2828
The slugified text.
2929
"""
30-
# The type of the return value is not defined for the markdown library.
31-
# Also for some reason `mypy` thinks the `toc` module doesn't have a
32-
# `slugify_unicode` function, but it definitely does.
33-
return toc.slugify_unicode(text, "-") # type: ignore[attr-defined,no-any-return]
30+
return toc.slugify_unicode(text, "-")
3431

3532

3633
def _hook_macros_plugin(env: macros.MacrosPlugin) -> None:

pyproject.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -53,38 +53,38 @@ dev-flake8 = [
5353
"flake8 == 7.0.0",
5454
"flake8-docstrings == 1.7.0",
5555
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
56-
"pydoclint == 0.3.2",
56+
"pydoclint == 0.4.1",
5757
"pydocstyle == 6.3.0",
5858
]
59-
dev-formatting = ["black == 24.2.0", "isort == 5.12.0"]
59+
dev-formatting = ["black == 24.2.0", "isort == 5.13.2"]
6060
dev-mkdocs = [
6161
"black == 24.2.0",
62-
"Markdown==3.4.4",
62+
"Markdown==3.5.2",
6363
"mike == 2.0.0",
6464
"mkdocs-gen-files == 0.5.0",
6565
"mkdocs-literate-nav == 0.6.1",
66-
"mkdocs-macros-plugin == 1.0.4",
67-
"mkdocs-material == 9.3.1",
68-
"mkdocstrings[python] == 0.23.0",
66+
"mkdocs-macros-plugin == 1.0.5",
67+
"mkdocs-material == 9.5.11",
68+
"mkdocstrings[python] == 0.24.1",
6969
"frequenz-repo-config[lib] == 0.9.1",
7070
]
7171
dev-mypy = [
72-
"mypy == 1.5.1",
73-
"types-Markdown == 3.4.2.10",
72+
"mypy == 1.8.0",
73+
"types-Markdown == 3.5.0.20240129",
7474
# For checking the noxfile, docs/ script, and tests
7575
"frequenz-client-microgrid[dev-mkdocs,dev-noxfile,dev-pytest]",
7676
]
7777
dev-noxfile = ["nox == 2023.4.22", "frequenz-repo-config[lib] == 0.9.1"]
7878
dev-pylint = [
79-
"pylint == 3.0.2",
79+
"pylint == 3.1.0",
8080
# For checking the noxfile, docs/ script, and tests
8181
"frequenz-client-microgrid[dev-mkdocs,dev-noxfile,dev-pytest]",
8282
]
8383
dev-pytest = [
84-
"pytest == 8.0.0",
84+
"pytest == 8.0.2",
8585
"frequenz-repo-config[extra-lint-examples] == 0.9.1",
86-
"pytest-mock == 3.11.1",
87-
"pytest-asyncio == 0.21.1",
86+
"pytest-mock == 3.12.0",
87+
"pytest-asyncio == 0.23.5",
8888
"async-solipsism == 0.5",
8989
]
9090
dev = [

0 commit comments

Comments
 (0)