Skip to content

Commit 665cd02

Browse files
dependabot[bot]Marenz
authored andcommitted
Bump the optional group with 6 updates
Bumps the optional group with 6 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.4.0` | `0.4.1` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.8` | `9.5.12` | | [mkdocstrings[python]](https://github.com/mkdocstrings/mkdocstrings) | `0.24.0` | `0.24.1` | | [frequenz-repo-config[api]](https://github.com/frequenz-floss/frequenz-repo-config-python) | `0.8.0` | `0.9.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.0.3` | `3.1.0` | | [frequenz-repo-config[extra-lint-examples]](https://github.com/frequenz-floss/frequenz-repo-config-python) | `0.8.0` | `0.9.1` | Updates `pydoclint` from 0.4.0 to 0.4.1 - [Release notes](https://github.com/jsh9/pydoclint/releases) - [Changelog](https://github.com/jsh9/pydoclint/blob/main/CHANGELOG.md) - [Commits](jsh9/pydoclint@0.4.0...0.4.1) Updates `mkdocs-material` from 9.5.8 to 9.5.12 - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Commits](squidfunk/mkdocs-material@9.5.8...9.5.12) Updates `mkdocstrings[python]` from 0.24.0 to 0.24.1 - [Release notes](https://github.com/mkdocstrings/mkdocstrings/releases) - [Changelog](https://github.com/mkdocstrings/mkdocstrings/blob/main/CHANGELOG.md) - [Commits](mkdocstrings/mkdocstrings@0.24.0...0.24.1) Updates `frequenz-repo-config[api]` from 0.8.0 to 0.9.1 - [Release notes](https://github.com/frequenz-floss/frequenz-repo-config-python/releases) - [Changelog](https://github.com/frequenz-floss/frequenz-repo-config-python/blob/v0.x.x/RELEASE_NOTES.md) - [Commits](frequenz-floss/frequenz-repo-config-python@v0.8.0...v0.9.1) Updates `pylint` from 3.0.3 to 3.1.0 - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](pylint-dev/pylint@v3.0.3...v3.1.0) Updates `frequenz-repo-config[extra-lint-examples]` from 0.8.0 to 0.9.1 - [Release notes](https://github.com/frequenz-floss/frequenz-repo-config-python/releases) - [Changelog](https://github.com/frequenz-floss/frequenz-repo-config-python/blob/v0.x.x/RELEASE_NOTES.md) - [Commits](frequenz-floss/frequenz-repo-config-python@v0.8.0...v0.9.1) --- updated-dependencies: - dependency-name: pydoclint dependency-type: direct:production update-type: version-update:semver-patch dependency-group: optional - dependency-name: mkdocs-material dependency-type: direct:production update-type: version-update:semver-patch dependency-group: optional - dependency-name: mkdocstrings[python] dependency-type: direct:production update-type: version-update:semver-patch dependency-group: optional - dependency-name: frequenz-repo-config[api] dependency-type: direct:production update-type: version-update:semver-minor dependency-group: optional - dependency-name: pylint dependency-type: direct:production update-type: version-update:semver-minor dependency-group: optional - dependency-name: frequenz-repo-config[extra-lint-examples] dependency-type: direct:production update-type: version-update:semver-minor dependency-group: optional ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent c3cae19 commit 665cd02

File tree

3 files changed

+18
-11
lines changed

3 files changed

+18
-11
lines changed

.github/containers/test-installation/Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55

66
FROM --platform=${TARGETPLATFORM} python:3.11-slim
77

8-
RUN python -m pip install --upgrade --no-cache-dir pip
8+
RUN apt-get update -y && \
9+
apt-get install --no-install-recommends -y \
10+
git && \
11+
apt-get clean && \
12+
rm -rf /var/lib/apt/lists/* && \
13+
python -m pip install --upgrade --no-cache-dir pip
914

1015
COPY dist dist
1116
RUN pip install dist/*.whl && \

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030

3131
steps:
3232
- name: Fetch sources
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
with:
35-
submodules: true
35+
submodules: recursive
3636

3737
- name: Run protolint
3838
# Only use hashes here, as we are passing the github token, we want to

pyproject.toml

Lines changed: 10 additions & 8 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[api] == 0.8.0",
8+
"frequenz-repo-config[api] == 0.9.1",
99
]
1010
build-backend = "setuptools.build_meta"
1111

@@ -41,7 +41,7 @@ dev-flake8 = [
4141
"flake8 == 7.0.0",
4242
"flake8-docstrings == 1.7.0",
4343
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
44-
"pydoclint == 0.4.0",
44+
"pydoclint == 0.4.1",
4545
"pydocstyle == 6.3.0",
4646
]
4747
dev-formatting = ["black == 24.2.0", "isort == 5.13.2"]
@@ -52,9 +52,9 @@ dev-mkdocs = [
5252
"mkdocs-gen-files == 0.5.0",
5353
"mkdocs-literate-nav == 0.6.1",
5454
"mkdocs-macros-plugin == 1.0.5",
55-
"mkdocs-material == 9.5.8",
56-
"mkdocstrings[python] == 0.24.0",
57-
"frequenz-repo-config[api] == 0.8.0",
55+
"mkdocs-material == 9.5.12",
56+
"mkdocstrings[python] == 0.24.1",
57+
"frequenz-repo-config[api] == 0.9.1",
5858
]
5959
dev-mypy = [
6060
"mypy == 1.8.0",
@@ -65,16 +65,16 @@ dev-mypy = [
6565
]
6666
dev-noxfile = [
6767
"nox == 2023.4.22",
68-
"frequenz-repo-config[api] == 0.8.0",
68+
"frequenz-repo-config[api] == 0.9.1",
6969
]
7070
dev-pylint = [
71-
"pylint == 3.0.3",
71+
"pylint == 3.1.0",
7272
# For checking the noxfile, docs/ script, and tests
7373
"frequenz-api-dispatch[dev-mkdocs,dev-noxfile,dev-pytest]",
7474
]
7575
dev-pytest = [
7676
"pytest == 7.4.2",
77-
"frequenz-repo-config[extra-lint-examples] == 0.8.0",
77+
"frequenz-repo-config[extra-lint-examples] == 0.9.1",
7878
]
7979
dev = [
8080
"frequenz-api-dispatch[dev-mkdocs,dev-flake8,dev-formatting,dev-mkdocs,dev-mypy,dev-noxfile,dev-pylint,dev-pytest]",
@@ -130,6 +130,8 @@ disable = [
130130
# it is a type-check, for which we already have mypy.
131131
"unsubscriptable-object",
132132
# Checked by flake8
133+
"redefined-outer-name",
134+
"unused-import",
133135
"line-too-long",
134136
"unused-variable",
135137
"unnecessary-lambda-assignment",

0 commit comments

Comments
 (0)