From 8fcc2dfa196761dabe8a4b9718725ec0ceb1d5bc Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Fri, 27 Jun 2025 18:56:14 +0100 Subject: [PATCH] fix: Pin lxml<6.0.0 (#2269) --- docker/ci/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker/ci/Dockerfile b/docker/ci/Dockerfile index db60e0e7d..503e07501 100644 --- a/docker/ci/Dockerfile +++ b/docker/ci/Dockerfile @@ -45,6 +45,10 @@ RUN apt-get update \ zip \ && pip3 install -q --upgrade --no-cache-dir pip \ && pip3 install -q --no-cache-dir \ + # TODO: Remove this once we switch to newer Ubuntu base image + # lxml 6.0.0 is not compatible with our image + 'lxml<6.0.0' \ + \ cmake==3.31.6 \ conan==2.17.0 \ gcovr \