From a479a113a4df2e894dee14a3648c8a32b7ab8170 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?= Date: Fri, 26 Jan 2024 19:07:41 +0100 Subject: [PATCH] github/workflows: Explicitly install setuptools MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Starting with Python 3.12, setuptools is no longer installed by default. Install it explicitly with pip as part of the selftest setup. Signed-off-by: Toke Høiland-Jørgensen --- .github/workflows/selftests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/selftests.yml b/.github/workflows/selftests.yml index d2083e10..277c198d 100644 --- a/.github/workflows/selftests.yml +++ b/.github/workflows/selftests.yml @@ -51,7 +51,7 @@ jobs: - name: Install dependencies run: | sudo apt-get install -y xvfb libxkbcommon-x11-0 libxcb-icccm4 libxcb-shape0 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xinput0 libxcb-xfixes0 - pip install QtPy ${PYQT} "matplotlib==${MATPLOTLIB_VERSION}.*" + pip install setuptools QtPy ${PYQT} "matplotlib==${MATPLOTLIB_VERSION}.*" - name: Run tests uses: GabrielBB/xvfb-action@v1 with: