This is an automated email from the ASF dual-hosted git repository. jensg pushed a commit to branch 0.23.0 in repository https://gitbox.apache.org/repos/asf/thrift.git
commit bb10ebd0dfda31c781e4fbabf0ff0cefbaede4d6 Author: Carel Combrink <[email protected]> AuthorDate: Wed Apr 8 07:41:18 2026 +0200 Override enforcement of PEP 668 - Add 'break-system-packages' for pip installs - See section 5 of PEP-668 --- build/docker/ubuntu-noble/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build/docker/ubuntu-noble/Dockerfile b/build/docker/ubuntu-noble/Dockerfile index 3d17c9056..3cfc8874b 100644 --- a/build/docker/ubuntu-noble/Dockerfile +++ b/build/docker/ubuntu-noble/Dockerfile @@ -255,7 +255,10 @@ RUN apt-get install -y --no-install-recommends \ python3-setuptools \ python3-wheel -RUN python3 -m pip install --no-cache-dir --upgrade "tornado>=6.3.0" "twisted>=24.3.0" "zope.interface>=6.1" +RUN python3 -m pip install --no-cache-dir --upgrade --break-system-packages \ + "tornado>=6.3.0" \ + "twisted>=24.3.0" \ + "zope.interface>=6.1" RUN apt-get install -y --no-install-recommends \ `# Ruby dependencies` \
