Skip to content

Commit 6175a79

Browse files
committed
Upgrade and migrate to repo-config v0.14.0
Signed-off-by: Leandro Lucarella <luca-frequenz@llucax.com>
1 parent 397130e commit 6175a79

3 files changed

Lines changed: 27 additions & 5 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Auto-merge Dependabot PR
2+
3+
on:
4+
pull_request:
5+
6+
permissions:
7+
contents: write
8+
pull-requests: write
9+
10+
jobs:
11+
auto-merge:
12+
if: github.actor == 'dependabot[bot]'
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Auto-merge Dependabot PR
16+
uses: frequenz-floss/dependabot-auto-approve@3cad5f42e79296505473325ac6636be897c8b8a1 # v1.3.2
17+
with:
18+
github-token: ${{ secrets.GITHUB_TOKEN }}
19+
dependency-type: 'all'
20+
auto-merge: 'true'
21+
merge-method: 'merge'
22+
add-label: 'tool:auto-merged'

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ plugins:
102102
show_root_heading: true
103103
show_root_members_full_path: true
104104
show_source: true
105-
import:
105+
inventories:
106106
# See https://mkdocstrings.github.io/python/usage/#import for details
107107
- https://docs.python.org/3/objects.inv
108108
- https://grpc.github.io/grpc/python/objects.inv

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
requires = [
66
"setuptools == 80.9.0",
77
"setuptools_scm[toml] == 9.2.2",
8-
"frequenz-repo-config[api] == 0.13.5",
8+
"frequenz-repo-config[api] == 0.14.0",
99
# We need to pin the protobuf, grpcio and grpcio-tools dependencies to make
1010
# sure the code is generated using the minimum supported versions, as older
1111
# versions can't work with code that was generated with newer versions.
@@ -63,23 +63,23 @@ dev-mkdocs = [
6363
"mkdocs-literate-nav == 0.6.2",
6464
"mkdocs-material == 9.6.21",
6565
"mkdocstrings[python] == 0.30.1",
66-
"frequenz-repo-config[api] == 0.13.5",
66+
"frequenz-repo-config[api] == 0.14.0",
6767
]
6868
dev-mypy = [
6969
"mypy == 1.18.2",
7070
"grpc-stubs == 1.53.0.6",
7171
# For checking the noxfile, docs/ script, and tests
7272
"frequenz-api-common[dev-mkdocs,dev-noxfile,dev-pytest]",
7373
]
74-
dev-noxfile = ["nox == 2025.10.16", "frequenz-repo-config[api] == 0.13.5"]
74+
dev-noxfile = ["nox == 2025.10.16", "frequenz-repo-config[api] == 0.14.0"]
7575
dev-pylint = [
7676
"pylint == 3.3.8",
7777
# For checking the noxfile, docs/ script, and tests
7878
"frequenz-api-common[dev-mkdocs,dev-noxfile,dev-pytest]",
7979
]
8080
dev-pytest = [
8181
"pytest == 8.4.2",
82-
"frequenz-repo-config[extra-lint-examples] == 0.13.5",
82+
"frequenz-repo-config[extra-lint-examples] == 0.14.0",
8383
]
8484
dev = [
8585
"frequenz-api-common[dev-mkdocs,dev-flake8,dev-formatting,dev-mkdocs,dev-mypy,dev-noxfile,dev-pylint,dev-pytest]",

0 commit comments

Comments
 (0)