From b8189d55c61e040246f7e7eb955b538560d3b7a4 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Wed, 26 Apr 2023 11:21:26 +0200 Subject: [PATCH] CI: Sync list of dependencies with README This adds python3-gi-cairo (which does not seem to be actually needed for running the test suite, so it did not fail without his, but better to keep the list in sync with the README anyway). It also reorders the list slightly, to match the README order. --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index ddc99c0fd..80fc277c3 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -33,7 +33,7 @@ jobs: # Install a specific python version as configured PACKAGES="$PACKAGES python${{matrix.python-version}}" # Normal dependencies - PACKAGES="$PACKAGES gettext intltool python3-gi python3-cairo python3-dbus python3-xdg libglib2.0-dev libglib2.0-bin gir1.2-gtk-3.0 gtk-update-icon-cache python3-distutils" + PACKAGES="$PACKAGES gettext intltool python3-gi python3-cairo python3-gi-cairo python3-distutils python3-dbus python3-xdg libglib2.0-dev libglib2.0-bin gir1.2-gtk-3.0 gtk-update-icon-cache" # For dbus-launch PACKAGES="$PACKAGES dbus-x11"