From c78d5bbc729a3069d37b341b19a0ff57acbe16f5 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 19 Oct 2021 10:32:42 +0200 Subject: [PATCH] Force version of python's module on xenial. Xenial's python is 3.5 and recent versions of used python modules are not supporting python 3.5 anymore. We have to force specific versions for gcovr and its dependencies. --- .github/ci_images/xenial_builder.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ci_images/xenial_builder.dockerfile b/.github/ci_images/xenial_builder.dockerfile index c4b4dcb..7b7ce9a 100644 --- a/.github/ci_images/xenial_builder.dockerfile +++ b/.github/ci_images/xenial_builder.dockerfile @@ -21,7 +21,7 @@ RUN apt update -q \ # vim less grep \ && apt-get clean -y \ && rm -rf /var/lib/apt/lists/* /usr/share/doc/* /var/cache/debconf/* \ - && pip3 install meson==0.52.1 pytest gcovr requests distro + && pip3 install meson==0.52.1 pytest 'markupsafe<2.0.0' 'jinja2<3.0.0' 'gcovr<5.0' requests distro # Create user RUN useradd --create-home runner