Skip to content
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 RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Upgrading

<!-- Here goes notes on how to upgrade from previous versions, including deprecations and what they should be replaced with -->
- The `frequenz.repo.config.github.abort()` function now takes most arguments as keyword-only arguments.

### Cookiecutter template

Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ dev-flake8 = [
"flake8 == 7.1.1",
"flake8-docstrings == 1.7.0",
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
"pydoclint == 0.5.7",
"pydoclint == 0.5.9",
"pydocstyle == 6.3.0",
]
dev-formatting = ["black == 24.8.0", "isort == 5.13.2"]
Expand All @@ -80,8 +80,8 @@ dev-mkdocs = [
"mike == 2.1.3",
"mkdocs-gen-files == 0.5.0",
"mkdocs-literate-nav == 0.6.1",
"mkdocs-macros-plugin == 1.0.5",
"mkdocs-material == 9.5.34",
"mkdocs-macros-plugin == 1.2.0",
"mkdocs-material == 9.5.39",
"mkdocstrings[python] == 0.26.1",
"mkdocstrings-python == 1.11.1",
]
Expand All @@ -104,7 +104,7 @@ dev-pylint = [
]
dev-pytest = [
"pytest == 8.3.3",
"pylint == 3.2.7", # We need this to check for the examples
"pylint == 3.3.1", # We need this to check for the examples
"cookiecutter == 2.6.0", # For checking the cookiecutter scripts
"jinja2 == 3.1.4", # For checking the cookiecutter scripts
"sybil >= 6.1.1, < 7", # Should be consistent with the extra-lint-examples dependency
Expand Down
1 change: 1 addition & 0 deletions src/frequenz/repo/config/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ def format(self, record: logging.LogRecord) -> str:

def abort( # pylint: disable=too-many-arguments
message: str,
*,
title: str | None = None,
file: str | None = None,
col: int | None = None,
Expand Down
Loading