Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dependabot/pip/optional 62c46a5f26 #255

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/_scripts/macros.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def _slugify(text: str) -> str:
# The type of the return value is not defined for the markdown library.
# Also for some reason `mypy` thinks the `toc` module doesn't have a
# `slugify_unicode` function, but it definitely does.
return toc.slugify_unicode(text, "-") # type: ignore[attr-defined,no-any-return]
return toc.slugify_unicode(text, "-")


def _hook_macros_plugin(env: macros.MacrosPlugin) -> None:
Expand Down
1 change: 0 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ plugins:
alias_type: redirect
canonical_version: latest
- mkdocstrings:
custom_templates: templates
default_handler: python
handlers:
python:
Expand Down
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,25 +43,25 @@ dev-flake8 = [
"pydoclint == 0.3.8",
"pydocstyle == 6.3.0",
]
dev-formatting = ["black == 23.10.1", "isort == 5.12.0"]
dev-formatting = ["black == 23.11.0", "isort == 5.12.0"]
dev-mkdocs = [
"Markdown == 3.5.1",
"black == 23.10.1",
"black == 23.11.0",
"frequenz-repo-config[lib] == 0.7.5",
"markdown-svgbob == 202112.1022",
"mike == 2.0.0",
"mkdocs-gen-files == 0.5.0",
"mkdocs-include-markdown-plugin == 6.0.4",
"mkdocs-literate-nav == 0.6.1",
"mkdocs-macros-plugin == 1.0.5",
"mkdocs-material == 9.4.7",
"mkdocstrings[python] == 0.23.0",
"mkdocs-material == 9.4.14",
"mkdocstrings[python] == 0.24.0",
]
dev-mypy = [
# For checking the noxfile, docs/ script, and tests
"frequenz-channels[dev-mkdocs,dev-noxfile,dev-pytest]",
"mypy == 1.6.1",
"types-Markdown == 3.5.0.0",
"mypy == 1.7.1",
"types-Markdown == 3.5.0.3",
]
dev-noxfile = ["nox == 2023.4.22", "frequenz-repo-config[lib] == 0.7.5"]
dev-pylint = [
Expand All @@ -72,9 +72,9 @@ dev-pylint = [
dev-pytest = [
"async-solipsism == 0.5",
"frequenz-repo-config[extra-lint-examples] == 0.7.5",
"hypothesis == 6.88.1",
"hypothesis == 6.91.0",
"pytest == 7.4.3",
"pytest-asyncio == 0.21.1",
"pytest-asyncio == 0.23.2",
"pytest-mock == 3.12.0",
]
dev = [
Expand Down