Skip to content

Commit a29b453

Browse files
authored
Bump the required group across 1 directory with 17 updates (#36)
2 parents bd2355b + f21a20f commit a29b453

File tree

3 files changed

+53
-25
lines changed

3 files changed

+53
-25
lines changed

.github/workflows/ci.yaml

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ jobs:
4141
runs-on: ${{ matrix.os }}
4242

4343
steps:
44+
- name: Setup Git
45+
uses: frequenz-floss/[email protected]
46+
4447
- name: Print environment (debug)
4548
run: env
4649

@@ -88,10 +91,14 @@ jobs:
8891
# The job name should match the name of the `nox` job.
8992
name: Test with nox
9093
needs: ["nox"]
94+
# We skip this job only if nox was also skipped
95+
if: always() && needs.nox.result != 'skipped'
9196
runs-on: ubuntu-20.04
97+
env:
98+
DEPS_RESULT: ${{ needs.nox.result }}
9299
steps:
93-
- name: Return true
94-
run: "true"
100+
- name: Check matrix job result
101+
run: test "$DEPS_RESULT" = "success"
95102

96103
nox-cross-arch:
97104
name: Cross-arch tests with nox
@@ -115,6 +122,9 @@ jobs:
115122
runs-on: ${{ matrix.os }}
116123

117124
steps:
125+
- name: Setup Git
126+
uses: frequenz-floss/[email protected]
127+
118128
- name: Fetch sources
119129
uses: actions/checkout@v4
120130

@@ -200,15 +210,22 @@ jobs:
200210
# The job name should match the name of the `nox-cross-arch` job.
201211
name: Cross-arch tests with nox
202212
needs: ["nox-cross-arch"]
213+
# We skip this job only if nox-cross-arch was also skipped
214+
if: always() && needs.nox-cross-arch.result != 'skipped'
203215
runs-on: ubuntu-20.04
216+
env:
217+
DEPS_RESULT: ${{ needs.nox-cross-arch.result }}
204218
steps:
205-
- name: Return true
206-
run: "true"
219+
- name: Check matrix job result
220+
run: test "$DEPS_RESULT" = "success"
207221

208222
build:
209223
name: Build distribution packages
210224
runs-on: ubuntu-20.04
211225
steps:
226+
- name: Setup Git
227+
uses: frequenz-floss/[email protected]
228+
212229
- name: Fetch sources
213230
uses: actions/checkout@v4
214231
with:
@@ -241,17 +258,24 @@ jobs:
241258
needs: ["build"]
242259
runs-on: ubuntu-20.04
243260
steps:
261+
- name: Setup Git
262+
uses: frequenz-floss/[email protected]
263+
244264
- name: Fetch sources
245265
uses: actions/checkout@v4
266+
246267
- name: Download package
247268
uses: actions/download-artifact@v4
248269
with:
249270
name: dist-packages
250271
path: dist
272+
251273
- name: Set up QEMU
252274
uses: docker/setup-qemu-action@v3
275+
253276
- name: Set up docker-buildx
254277
uses: docker/setup-buildx-action@v3
278+
255279
- name: Test Installation
256280
uses: docker/build-push-action@v6
257281
with:

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ plugins:
9797
- literate-nav:
9898
nav_file: SUMMARY.md
9999
- mike:
100-
alias_type: redirect
100+
alias_type: symlink
101101
canonical_version: latest
102102
- mkdocstrings:
103103
default_handler: python

pyproject.toml

Lines changed: 24 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
requires = [
66
"setuptools == 68.1.0",
77
"setuptools_scm[toml] == 7.1.0",
8-
"frequenz-repo-config[lib] == 0.9.2",
8+
"frequenz-repo-config[lib] == 0.10.0",
99
]
1010
build-backend = "setuptools.build_meta"
1111

@@ -48,43 +48,43 @@ email = "[email protected]"
4848

4949
[project.optional-dependencies]
5050
dev-flake8 = [
51-
"flake8 == 7.1.0",
51+
"flake8 == 7.1.1",
5252
"flake8-docstrings == 1.7.0",
5353
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
54-
"pydoclint == 0.5.3",
54+
"pydoclint == 0.5.9",
5555
"pydocstyle == 6.3.0",
5656
]
57-
dev-formatting = ["black == 24.4.2", "isort == 5.13.2"]
57+
dev-formatting = ["black == 24.8.0", "isort == 5.13.2"]
5858
dev-mkdocs = [
59-
"black == 24.4.2",
60-
"Markdown==3.6",
61-
"mike == 2.1.2",
59+
"black == 24.8.0",
60+
"Markdown==3.7",
61+
"mike == 2.1.3",
6262
"mkdocs-gen-files == 0.5.0",
6363
"mkdocs-literate-nav == 0.6.1",
64-
"mkdocs-macros-plugin == 1.0.5",
65-
"mkdocs-material == 9.5.27",
66-
"mkdocstrings[python] == 0.25.1",
67-
"mkdocstrings-python == 1.10.5",
68-
"frequenz-repo-config[lib] == 0.9.2",
64+
"mkdocs-macros-plugin == 1.2.0",
65+
"mkdocs-material == 9.5.39",
66+
"mkdocstrings[python] == 0.26.1",
67+
"mkdocstrings-python == 1.11.1",
68+
"frequenz-repo-config[lib] == 0.10.0",
6969
]
7070
dev-mypy = [
71-
"mypy == 1.10.1",
72-
"types-Markdown == 3.6.0.20240316",
71+
"mypy == 1.11.2",
72+
"types-Markdown == 3.7.0.20240822",
7373
# For checking the noxfile, docs/ script, and tests
7474
"pymdownx-superfence-filter-lines[dev-mkdocs,dev-noxfile,dev-pytest]",
7575
]
76-
dev-noxfile = ["nox == 2024.4.15", "frequenz-repo-config[lib] == 0.9.2"]
76+
dev-noxfile = ["nox == 2024.4.15", "frequenz-repo-config[lib] == 0.10.0"]
7777
dev-pylint = [
78-
"pylint == 3.2.5",
78+
"pylint == 3.3.1",
7979
# For checking the noxfile, docs/ script, and tests
8080
"pymdownx-superfence-filter-lines[dev-mkdocs,dev-noxfile,dev-pytest]",
8181
]
8282
dev-pytest = [
83-
"pytest == 8.2.2",
84-
"frequenz-repo-config[extra-lint-examples] == 0.9.2",
83+
"pytest == 8.3.3",
84+
"frequenz-repo-config[extra-lint-examples] == 0.10.0",
8585
"pytest-mock == 3.14.0",
86-
"pytest-asyncio == 0.23.7",
87-
"async-solipsism == 0.6",
86+
"pytest-asyncio == 0.24.0",
87+
"async-solipsism == 0.7",
8888
]
8989
dev = [
9090
"pymdownx-superfence-filter-lines[dev-mkdocs,dev-flake8,dev-formatting,dev-mkdocs,dev-mypy,dev-noxfile,dev-pylint,dev-pytest]",
@@ -139,10 +139,14 @@ disable = [
139139
# pylint's unsubscriptable check is buggy and is not needed because
140140
# it is a type-check, for which we already have mypy.
141141
"unsubscriptable-object",
142+
# Checked by mypy
143+
"no-member",
142144
# Checked by flake8
145+
"f-string-without-interpolation",
143146
"redefined-outer-name",
144147
"unused-import",
145148
"line-too-long",
149+
"missing-function-docstring",
146150
"unused-variable",
147151
"unnecessary-lambda-assignment",
148152
]

0 commit comments

Comments
 (0)