Skip to content

Commit 114f359

Browse files
committed
Apply updates from repo-config v0.9.x
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 6a7ef4f commit 114f359

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ jobs:
117117
steps:
118118
- name: Fetch sources
119119
uses: actions/checkout@v4
120+
with:
121+
submodules: true
120122

121123
- name: Set up QEMU
122124
uses: docker/setup-qemu-action@v3

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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)