Updating PySide6 to v6.7.2

This commit is contained in:
Adsooi 2024-09-18 18:26:15 +02:00
parent 5024515881
commit 8077e80497
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160
2 changed files with 21 additions and 20 deletions

View file

@ -1,10 +1,11 @@
FROM ubuntu:jammy
FROM ubuntu:noble
ARG DEBIAN_FRONTEND=noninteractive
ARG PYSIDE2_VERSION=6.6.1
ARG PYSIDE2_VERSION=6.7.2
ENV TZ=Europe/Paris
RUN apt-get update
RUN apt-get -y install make git python3-pip qml-module-qtquick-controls2 qml-module-qtmultimedia qml-module-qtgraphicaleffects qml-module-qtquick2 xvfb xdotool wmctrl libxcb-cursor0
RUN apt-get -y install make git python3-pip python3-pytest python3-pytest-cov python3-pytestqt xvfb xdotool wmctrl libxcb-cursor0
RUN rm /usr/lib/python3.*/EXTERNALLY-MANAGED # Disable managed environment. We don't care about breaking system packages here.
RUN python3 -m pip install PySide6==$PYSIDE2_VERSION
RUN apt clean