Skip to content

Commit aa30a79

Browse files
authored
Bump the required group with 4 updates (#312)
2 parents 2a46f7e + fd89fb5 commit aa30a79

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Upgrading
88

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

1111
### Cookiecutter template
1212

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ dev-flake8 = [
7070
"flake8 == 7.1.1",
7171
"flake8-docstrings == 1.7.0",
7272
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
73-
"pydoclint == 0.5.7",
73+
"pydoclint == 0.5.9",
7474
"pydocstyle == 6.3.0",
7575
]
7676
dev-formatting = ["black == 24.8.0", "isort == 5.13.2"]
@@ -80,8 +80,8 @@ dev-mkdocs = [
8080
"mike == 2.1.3",
8181
"mkdocs-gen-files == 0.5.0",
8282
"mkdocs-literate-nav == 0.6.1",
83-
"mkdocs-macros-plugin == 1.0.5",
84-
"mkdocs-material == 9.5.34",
83+
"mkdocs-macros-plugin == 1.2.0",
84+
"mkdocs-material == 9.5.39",
8585
"mkdocstrings[python] == 0.26.1",
8686
"mkdocstrings-python == 1.11.1",
8787
]
@@ -104,7 +104,7 @@ dev-pylint = [
104104
]
105105
dev-pytest = [
106106
"pytest == 8.3.3",
107-
"pylint == 3.2.7", # We need this to check for the examples
107+
"pylint == 3.3.1", # We need this to check for the examples
108108
"cookiecutter == 2.6.0", # For checking the cookiecutter scripts
109109
"jinja2 == 3.1.4", # For checking the cookiecutter scripts
110110
"sybil >= 6.1.1, < 7", # Should be consistent with the extra-lint-examples dependency

src/frequenz/repo/config/github.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def format(self, record: logging.LogRecord) -> str:
5656

5757
def abort( # pylint: disable=too-many-arguments
5858
message: str,
59+
*,
5960
title: str | None = None,
6061
file: str | None = None,
6162
col: int | None = None,

0 commit comments

Comments
 (0)