docker: Install libxml2.13

This commit is contained in:
Florian Bruhin 2025-05-06 09:11:20 +02:00
parent 0a9b6aab73
commit a3bdcca37b
1 changed files with 6 additions and 0 deletions

View File

@ -66,6 +66,12 @@ RUN python3.10 -m ensurepip
RUN python3.10 -m pip install tox pyqt5-sip
{% endif %}
# Needed for running PyPI Qt builds
RUN cd ~ && \
git clone https://aur.archlinux.org/libxml2.13.git && \
cd libxml2.13 && \
makepkg -si --noconfirm
{% if qt6 %}
{% set pyqt_module = 'PyQt6' %}
{% else %}