Skip to content

Commit 1db141d

Browse files
dependabot[bot]Marenz
authored andcommitted
Bump the optional group with 7 updates
Bumps the optional group with 7 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.3.9` | `0.4.1` | | [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 `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: 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 df167c3 commit 1db141d

File tree

2 files changed

+17
-10
lines changed

2 files changed

+17
-10
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: 11 additions & 9 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

@@ -40,7 +40,7 @@ dev-flake8 = [
4040
"flake8 == 7.0.0",
4141
"flake8-docstrings == 1.7.0",
4242
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
43-
"pydoclint == 0.3.9",
43+
"pydoclint == 0.4.1",
4444
"pydocstyle == 6.3.0",
4545
]
4646
dev-formatting = ["black == 24.2.0", "isort == 5.13.2"]
@@ -51,9 +51,9 @@ dev-mkdocs = [
5151
"mkdocs-gen-files == 0.5.0",
5252
"mkdocs-literate-nav == 0.6.1",
5353
"mkdocs-macros-plugin == 1.0.5",
54-
"mkdocs-material == 9.5.6",
55-
"mkdocstrings[python] == 0.24.0",
56-
"frequenz-repo-config[lib] == 0.8.0",
54+
"mkdocs-material == 9.5.12",
55+
"mkdocstrings[python] == 0.24.1",
56+
"frequenz-repo-config[lib] == 0.9.1",
5757
]
5858
dev-mypy = [
5959
"mypy == 1.8.0",
@@ -63,18 +63,18 @@ dev-mypy = [
6363
]
6464
dev-noxfile = [
6565
"nox == 2023.4.22",
66-
"frequenz-repo-config[lib] == 0.8.0",
66+
"frequenz-repo-config[lib] == 0.9.1",
6767
]
6868
dev-pylint = [
69-
"pylint == 3.0.3",
69+
"pylint == 3.1.0",
7070
# For checking the noxfile, docs/ script, and tests
7171
"frequenz-client-common[dev-mkdocs,dev-noxfile,dev-pytest]",
7272
]
7373
dev-pytest = [
7474
"pytest == 7.4.2",
75-
"frequenz-repo-config[extra-lint-examples] == 0.8.0",
75+
"frequenz-repo-config[extra-lint-examples] == 0.9.1",
7676
"pytest-mock == 3.12.0",
77-
"pytest-asyncio == 0.23.4",
77+
"pytest-asyncio == 0.23.5",
7878
"async-solipsism == 0.5",
7979
]
8080
dev = [
@@ -132,6 +132,8 @@ disable = [
132132
# it is a type-check, for which we already have mypy.
133133
"unsubscriptable-object",
134134
# Checked by flake8
135+
"redefined-outer-name",
136+
"unused-import",
135137
"line-too-long",
136138
"unused-variable",
137139
"unnecessary-lambda-assignment",

0 commit comments

Comments
 (0)