Skip to content

Commit adb717c

Browse files
authored
Merge pull request #478 from camptocamp/renovate/master-all-minor-versions
Update python Docker tag to v3.11.0 (master)
2 parents 12f8751 + ff28c75 commit adb717c

File tree

3 files changed

+10
-33
lines changed

3 files changed

+10
-33
lines changed

acceptance_tests/Dockerfile

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
FROM python:3.10.8 as base-all
1+
FROM python:3.11.0 as base-all
22
LABEL maintainer "info@camptocamp.org"
33

4+
# Fail on error on pipe, see: https://github.com/hadolint/hadolint/wiki/DL4006.
5+
# Treat unset variables as an error when substituting.
6+
# Print commands and their arguments as they are executed.
47
SHELL ["/bin/bash", "-o", "pipefail", "-cux"]
58

9+
# Workeround for newer version of setuptools
10+
ENV SETUPTOOLS_USE_DISTUTILS=stdlib
11+
612
RUN --mount=type=cache,target=/var/lib/apt/lists \
713
--mount=type=cache,target=/var/cache,sharing=locked \
814
apt-get update \

acceptance_tests/poetry.lock

+2-31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

acceptance_tests/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = 'Not used'
99
authors = []
1010

1111
[tool.poetry.dependencies]
12-
python = ">=3.10,<3.11"
12+
python = ">=3.11,<3.12"
1313

1414
[tool.poetry.dev-dependencies]
1515
c2cwsgiutils = { extras = ["standard"], version = "==5.1.5" }

0 commit comments

Comments
 (0)