Skip to content

Commit 303ccee

Browse files
authored
Merge pull request #16 from frequenz-floss/dependabot/pip/optional-e8a0e90bf4
Bump the optional group with 7 updates
2 parents df167c3 + 1db141d commit 303ccee

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)