From 19499306fa57b438e5f2de39b820976f2b876006 Mon Sep 17 00:00:00 2001 From: David Stansby Date: Wed, 12 Mar 2025 19:16:28 +0000 Subject: [PATCH] Fix PyGObject version pinning in macOS tests --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 626cb6e2d628..98b51afc14c1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -277,7 +277,7 @@ jobs: # (sometimes, the install appears to be successful but shared # libraries cannot be loaded at runtime, so an actual import is a # better check). - python -m pip install --upgrade pycairo 'cairocffi>=0.8' PyGObject${{ matrix.pygobject-ver }} && + python -m pip install --upgrade pycairo 'cairocffi>=0.8' 'PyGObject${{ matrix.pygobject-ver }}' && ( python -c 'import gi; gi.require_version("Gtk", "4.0"); from gi.repository import Gtk' && echo 'PyGObject 4 is available' || echo 'PyGObject 4 is not available'