Skip to content
Closed
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
81 changes: 0 additions & 81 deletions docs/_scripts/macros.py

This file was deleted.

5 changes: 2 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,9 @@ plugins:
- https://docs.python.org/3/objects.inv
- https://typing-extensions.readthedocs.io/en/stable/objects.inv
# Note this plugin must be loaded after mkdocstrings to be able to use macros
# inside docstrings. See the comment in `docs/_scripts/macros.py` for more
# details
# inside docstrings.
- macros:
module_name: docs/_scripts/macros
modules: ["frequenz.repo.config.mkdocs.mkdocstrings_macros"]
on_undefined: strict
on_error_fail: true
- search
Expand Down
12 changes: 7 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
requires = [
"setuptools == 75.8.0",
"setuptools_scm[toml] == 8.1.0",
"frequenz-repo-config[lib] == 0.11.0",
"frequenz-repo-config[lib] == 0.12.3",
]
build-backend = "setuptools.build_meta"

Expand Down Expand Up @@ -61,8 +61,9 @@ dev-mkdocs = [
"mkdocs-literate-nav == 0.6.1",
"mkdocs-macros-plugin == 1.3.7",
"mkdocs-material == 9.6.1",
"mkdocstrings[python] == 0.27.0",
"frequenz-repo-config[lib] == 0.11.0",
"mkdocstrings[python] == 0.28.2",
"mkdocstrings-python == 1.16.2",
"frequenz-repo-config[lib] == 0.12.3",
]
dev-mypy = [
"mypy == 1.14.1",
Expand All @@ -74,7 +75,7 @@ dev-mypy = [
]
dev-noxfile = [
"nox == 2025.2.9",
"frequenz-repo-config[lib] == 0.11.0",
"frequenz-repo-config[lib] == 0.12.3",
]
dev-pylint = [
"pylint == 3.3.4",
Expand All @@ -84,7 +85,7 @@ dev-pylint = [
]
dev-pytest = [
"pytest == 8.3.4",
"frequenz-repo-config[extra-lint-examples] == 0.11.0",
"frequenz-repo-config[extra-lint-examples] == 0.12.3",
"pytest-mock == 3.14.0",
"pytest-asyncio == 0.25.3",
"async-solipsism == 0.7",
Expand Down Expand Up @@ -155,6 +156,7 @@ disable = [
]

[tool.pytest.ini_options]
addopts = "-W=all -Werror -Wdefault::DeprecationWarning -Wdefault::PendingDeprecationWarning -vv"
testpaths = ["tests", "src"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
Expand Down
Loading