From d2534d1f613771ab1b47cc1025e8086eb292ce77 Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Mon, 26 Feb 2024 21:50:29 +0900 Subject: [PATCH] workflows/direct: install setuptools on macOS for glib 2.78 It's no longer being pulled in by default. This will no longer be required with glib 2.80. Signed-off-by: Benjamin Gilbert --- .github/workflows/direct.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/direct.yml b/.github/workflows/direct.yml index 53415fd..f3f9797 100644 --- a/.github/workflows/direct.yml +++ b/.github/workflows/direct.yml @@ -58,7 +58,9 @@ jobs: brew link --overwrite $formula done brew update - brew install meson + # setuptools needed by glib 2.78 + # https://gitlab.gnome.org/GNOME/glib/-/merge_requests/3740 + brew install meson python-setuptools - name: Check out repo uses: actions/checkout@v4 - name: Cache sources