Skip to content

Commit 8e779c6

Browse files
dependabot[bot]Marenz
authored andcommitted
Bump the optional group with 8 updates
Bumps the optional group with 8 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.3.9` | `0.4.1` | | [black](https://github.com/psf/black) | `24.1.1` | `24.2.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.6` | `9.5.12` | | [mkdocstrings[python]](https://github.com/mkdocstrings/mkdocstrings) | `0.24.0` | `0.24.1` | | [frequenz-repo-config[lib]](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` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.23.4` | `0.23.5` | Updates `pydoclint` from 0.3.9 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.3.9...0.4.1) Updates `black` from 24.1.1 to 24.2.0 - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](psf/black@24.1.1...24.2.0) Updates `mkdocs-material` from 9.5.6 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.6...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[lib]` 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) Updates `pytest-asyncio` from 0.23.4 to 0.23.5 - [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases) - [Commits](pytest-dev/pytest-asyncio@v0.23.4...v0.23.5) --- updated-dependencies: - dependency-name: pydoclint dependency-type: direct:production update-type: version-update:semver-minor dependency-group: optional - dependency-name: black dependency-type: direct:production update-type: version-update:semver-minor 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[lib] 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 - dependency-name: pytest-asyncio dependency-type: direct:production update-type: version-update:semver-patch dependency-group: optional ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 231d34c commit 8e779c6

File tree

2 files changed

+19
-12
lines changed

2 files changed

+19
-12
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 && \

pyproject.toml

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

@@ -51,38 +51,38 @@ dev-flake8 = [
5151
"flake8 == 7.0.0",
5252
"flake8-docstrings == 1.7.0",
5353
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
54-
"pydoclint == 0.3.9",
54+
"pydoclint == 0.4.1",
5555
"pydocstyle == 6.3.0",
5656
]
57-
dev-formatting = ["black == 24.1.1", "isort == 5.13.2"]
57+
dev-formatting = ["black == 24.2.0", "isort == 5.13.2"]
5858
dev-mkdocs = [
59-
"black == 24.1.1",
59+
"black == 24.2.0",
6060
"Markdown==3.5.2",
6161
"mike == 2.0.0",
6262
"mkdocs-gen-files == 0.5.0",
6363
"mkdocs-literate-nav == 0.6.1",
6464
"mkdocs-macros-plugin == 1.0.5",
65-
"mkdocs-material == 9.5.6",
66-
"mkdocstrings[python] == 0.24.0",
67-
"frequenz-repo-config[lib] == 0.8.0",
65+
"mkdocs-material == 9.5.12",
66+
"mkdocstrings[python] == 0.24.1",
67+
"frequenz-repo-config[lib] == 0.9.1",
6868
]
6969
dev-mypy = [
7070
"mypy == 1.8.0",
7171
"types-Markdown == 3.5.0.20240129",
7272
# For checking the noxfile, docs/ script, and tests
7373
"pymdownx-superfence-filter-lines[dev-mkdocs,dev-noxfile,dev-pytest]",
7474
]
75-
dev-noxfile = ["nox == 2023.4.22", "frequenz-repo-config[lib] == 0.8.0"]
75+
dev-noxfile = ["nox == 2023.4.22", "frequenz-repo-config[lib] == 0.9.1"]
7676
dev-pylint = [
77-
"pylint == 3.0.3",
77+
"pylint == 3.1.0",
7878
# For checking the noxfile, docs/ script, and tests
7979
"pymdownx-superfence-filter-lines[dev-mkdocs,dev-noxfile,dev-pytest]",
8080
]
8181
dev-pytest = [
8282
"pytest == 7.4.4",
83-
"frequenz-repo-config[extra-lint-examples] == 0.8.0",
83+
"frequenz-repo-config[extra-lint-examples] == 0.9.1",
8484
"pytest-mock == 3.12.0",
85-
"pytest-asyncio == 0.23.4",
85+
"pytest-asyncio == 0.23.5",
8686
"async-solipsism == 0.5",
8787
]
8888
dev = [
@@ -139,6 +139,8 @@ disable = [
139139
# it is a type-check, for which we already have mypy.
140140
"unsubscriptable-object",
141141
# Checked by flake8
142+
"redefined-outer-name",
143+
"unused-import",
142144
"line-too-long",
143145
"unused-variable",
144146
"unnecessary-lambda-assignment",

0 commit comments

Comments
 (0)