Skip to content

Bump the optional group with 16 updates #10

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

Merged
merged 1 commit into from
Feb 29, 2024
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
5 changes: 1 addition & 4 deletions docs/_scripts/macros.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@ def _slugify(text: str) -> str:
Returns:
The slugified text.
"""
# 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
36 changes: 18 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
requires = [
"setuptools == 68.1.0",
"setuptools_scm[toml] == 7.1.0",
"frequenz-repo-config[lib] == 0.9.0",
"frequenz-repo-config[lib] == 0.9.1",
]
build-backend = "setuptools.build_meta"

Expand All @@ -28,11 +28,11 @@ classifiers = [
requires-python = ">= 3.11, < 4"
# TODO(cookiecutter): Remove and add more dependencies if appropriate
dependencies = [
"typing-extensions == 4.5.0",
"typing-extensions == 4.10.0",
# Make sure to update the version for cross-referencing also in the
# mkdocs.yml file when changing the version here (look for the config key
# plugins.mkdocstrings.handlers.python.import)
"frequenz-sdk == 0.25.0",
"frequenz-sdk == 0.25.2",
]
dynamic = ["version"]

Expand All @@ -46,41 +46,41 @@ dev-flake8 = [
"flake8 == 7.0.0",
"flake8-docstrings == 1.7.0",
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
"pydoclint == 0.3.2",
"pydoclint == 0.4.1",
"pydocstyle == 6.3.0",
]
dev-formatting = ["black == 24.2.0", "isort == 5.12.0"]
dev-formatting = ["black == 24.2.0", "isort == 5.13.2"]
dev-mkdocs = [
"black == 24.2.0",
"Markdown==3.4.4",
"Markdown==3.5.2",
"mike == 2.0.0",
"mkdocs-gen-files == 0.5.0",
"mkdocs-literate-nav == 0.6.1",
"mkdocs-macros-plugin == 1.0.4",
"mkdocs-material == 9.3.1",
"mkdocstrings[python] == 0.23.0",
"frequenz-repo-config[lib] == 0.9.0",
"mkdocs-macros-plugin == 1.0.5",
"mkdocs-material == 9.5.11",
"mkdocstrings[python] == 0.24.1",
"frequenz-repo-config[lib] == 0.9.1",
]
dev-mypy = [
"mypy == 1.5.1",
"types-Markdown == 3.4.2.10",
"mypy == 1.8.0",
"types-Markdown == 3.5.0.20240129",
# For checking the noxfile, docs/ script, and tests
"frequenz-dispatch[dev-mkdocs,dev-noxfile,dev-pytest]",
]
dev-noxfile = [
"nox == 2023.4.22",
"frequenz-repo-config[lib] == 0.9.0",
"frequenz-repo-config[lib] == 0.9.1",
]
dev-pylint = [
"pylint == 3.0.2",
"pylint == 3.1.0",
# For checking the noxfile, docs/ script, and tests
"frequenz-dispatch[dev-mkdocs,dev-noxfile,dev-pytest]",
]
dev-pytest = [
"pytest == 8.0.0",
"frequenz-repo-config[extra-lint-examples] == 0.9.0",
"pytest-mock == 3.11.1",
"pytest-asyncio == 0.21.1",
"pytest == 8.0.2",
"frequenz-repo-config[extra-lint-examples] == 0.9.1",
"pytest-mock == 3.12.0",
"pytest-asyncio == 0.23.5",
"async-solipsism == 0.5",
]
dev = [
Expand Down