Skip to content

Commit 1fa07ab

Browse files
authored
dependabot/pip/optional 62c46a5f26 (#255)
- Bump types-markdown from 3.5.0.0 to 3.5.0.3 - Fix CI complaining about unused comment - Bump the optional group with 6 updates - Remove unused mkdocstrings setting that causes CI failures
2 parents 834893a + 82fdc3b commit 1fa07ab

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

docs/_scripts/macros.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def _slugify(text: str) -> str:
3333
# The type of the return value is not defined for the markdown library.
3434
# Also for some reason `mypy` thinks the `toc` module doesn't have a
3535
# `slugify_unicode` function, but it definitely does.
36-
return toc.slugify_unicode(text, "-") # type: ignore[attr-defined,no-any-return]
36+
return toc.slugify_unicode(text, "-")
3737

3838

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

mkdocs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ plugins:
100100
alias_type: redirect
101101
canonical_version: latest
102102
- mkdocstrings:
103-
custom_templates: templates
104103
default_handler: python
105104
handlers:
106105
python:

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,25 +43,25 @@ dev-flake8 = [
4343
"pydoclint == 0.3.8",
4444
"pydocstyle == 6.3.0",
4545
]
46-
dev-formatting = ["black == 23.10.1", "isort == 5.12.0"]
46+
dev-formatting = ["black == 23.11.0", "isort == 5.12.0"]
4747
dev-mkdocs = [
4848
"Markdown == 3.5.1",
49-
"black == 23.10.1",
49+
"black == 23.11.0",
5050
"frequenz-repo-config[lib] == 0.7.5",
5151
"markdown-svgbob == 202112.1022",
5252
"mike == 2.0.0",
5353
"mkdocs-gen-files == 0.5.0",
5454
"mkdocs-include-markdown-plugin == 6.0.4",
5555
"mkdocs-literate-nav == 0.6.1",
5656
"mkdocs-macros-plugin == 1.0.5",
57-
"mkdocs-material == 9.4.7",
58-
"mkdocstrings[python] == 0.23.0",
57+
"mkdocs-material == 9.4.14",
58+
"mkdocstrings[python] == 0.24.0",
5959
]
6060
dev-mypy = [
6161
# For checking the noxfile, docs/ script, and tests
6262
"frequenz-channels[dev-mkdocs,dev-noxfile,dev-pytest]",
63-
"mypy == 1.6.1",
64-
"types-Markdown == 3.5.0.0",
63+
"mypy == 1.7.1",
64+
"types-Markdown == 3.5.0.3",
6565
]
6666
dev-noxfile = ["nox == 2023.4.22", "frequenz-repo-config[lib] == 0.7.5"]
6767
dev-pylint = [
@@ -72,9 +72,9 @@ dev-pylint = [
7272
dev-pytest = [
7373
"async-solipsism == 0.5",
7474
"frequenz-repo-config[extra-lint-examples] == 0.7.5",
75-
"hypothesis == 6.88.1",
75+
"hypothesis == 6.91.0",
7676
"pytest == 7.4.3",
77-
"pytest-asyncio == 0.21.1",
77+
"pytest-asyncio == 0.23.2",
7878
"pytest-mock == 3.12.0",
7979
]
8080
dev = [

0 commit comments

Comments
 (0)