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
16 changes: 10 additions & 6 deletions .github/workflows/auto-dependabot.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
name: Dependabot Auto Manage
on: pull_request
name: Auto-merge Dependabot PR

on:
pull_request:

permissions:
contents: write
pull-requests: write

jobs:
dependabot:
runs-on: ubuntu-latest
auto-merge:
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: frequenz-floss/dependabot-auto-approve@3cad5f42e79296505473325ac6636be897c8b8a1 # v1.3.2
- name: Auto-merge Dependabot PR
uses: frequenz-floss/dependabot-auto-approve@3cad5f42e79296505473325ac6636be897c8b8a1 # v1.3.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
dependency-type: 'all'
auto-merge: 'true'
merge-method: 'merge'
add-label: 'auto-merged'
add-label: 'tool:auto-merged'
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ plugins:
default_handler: python
handlers:
python:
paths: ["src"]
options:
paths: ["src"]
docstring_section_style: spacy
inherited_members: true
merge_init_into_class: false
Expand All @@ -116,7 +116,7 @@ plugins:
show_source: true
show_symbol_type_toc: true
signature_crossrefs: true
import:
inventories:
# TODO(cookiecutter): You might want to add other external references here
# See https://mkdocstrings.github.io/python/usage/#import for details
- https://docs.python.org/3/objects.inv
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
requires = [
"setuptools == 80.10.2",
"setuptools_scm[toml] == 9.2.2",
"frequenz-repo-config[lib] == 0.13.6",
"frequenz-repo-config[lib] == 0.14.0",
]
build-backend = "setuptools.build_meta"

Expand Down Expand Up @@ -56,7 +56,7 @@ dev-mkdocs = [
"mkdocs-material == 9.7.1",
"mkdocstrings[python] == 0.30.1",
"mkdocstrings-python == 1.18.2",
"frequenz-repo-config[lib] == 0.13.6",
"frequenz-repo-config[lib] == 0.14.0",
]
dev-mypy = [
"mypy == 1.19.1",
Expand All @@ -65,15 +65,15 @@ dev-mypy = [
# For checking the noxfile, docs/ script, and tests
"frequenz-client-common[dev-mkdocs,dev-noxfile,dev-pytest]",
]
dev-noxfile = ["nox == 2025.11.12", "frequenz-repo-config[lib] == 0.13.6"]
dev-noxfile = ["nox == 2025.11.12", "frequenz-repo-config[lib] == 0.14.0"]
dev-pylint = [
"pylint == 4.0.3",
# For checking the noxfile, docs/ script, and tests
"frequenz-client-common[dev-mkdocs,dev-noxfile,dev-pytest]",
]
dev-pytest = [
"pytest == 8.4.2",
"frequenz-repo-config[extra-lint-examples] == 0.13.6",
"frequenz-repo-config[extra-lint-examples] == 0.14.0",
"hypothesis == 6.151.4",
"pytest-mock == 3.15.1",
"pytest-asyncio == 1.2.0",
Expand Down