File tree Expand file tree Collapse file tree 4 files changed +12
-2
lines changed
containers/test-installation Expand file tree Collapse file tree 4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 33# This Dockerfile is used to test the installation of the python package in
44# multiple platforms in the CI. It is not used to build the package itself.
55
6- FROM --platform=${TARGETPLATFORM} python:3.11-slim
6+ FROM python:3.11-slim
77
88RUN apt-get update -y && \
99 apt-get install --no-install-recommends -y \
Original file line number Diff line number Diff line change @@ -39,3 +39,11 @@ updates:
3939 labels :
4040 - " part:tooling"
4141 - " type:tech-debt"
42+ groups :
43+ compatible :
44+ update-types :
45+ - " minor"
46+ - " patch"
47+ artifacts :
48+ patterns :
49+ - " actions/*-artifact"
Original file line number Diff line number Diff line change 2525# - changed-files:
2626# - any-glob-to-any-file:
2727# - "src/**/*.py"
28- # - all-glob -to-all-file :
28+ # - all-globs -to-all-files :
2929# - "!src/__init__.py"
3030#
3131# Please have in mind that that the part:xxx labels need to
Original file line number Diff line number Diff line change @@ -152,6 +152,8 @@ disable = [
152152 " unsubscriptable-object" ,
153153 # Checked by mypy
154154 " no-member" ,
155+ " possibly-used-before-assignment" ,
156+ " no-name-in-module" ,
155157 # Checked by flake8
156158 " f-string-without-interpolation" ,
157159 " line-too-long" ,
You can’t perform that action at this time.
0 commit comments