From 12c9a434f10912c395bd71dd093472e9951dab8b Mon Sep 17 00:00:00 2001 From: James Westman Date: Wed, 29 Jun 2022 02:24:06 -0500 Subject: [PATCH] ci: Install pygobject in CI image --- build-aux/Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build-aux/Dockerfile b/build-aux/Dockerfile index f2f168e..4b9e0af 100644 --- a/build-aux/Dockerfile +++ b/build-aux/Dockerfile @@ -1,9 +1,8 @@ FROM fedora:latest -RUN dnf install -y meson python3-pip gtk4-devel gobject-introspection-devel libadwaita-devel python3-devel +RUN dnf install -y meson python3-pip gtk4-devel gobject-introspection-devel \ + libadwaita-devel python3-devel python3-gobject git RUN pip3 install furo mypy sphinx coverage # The version on PyPI is very old and doesn't install. Use the upstream package registry instead. -RUN pip install pythonfuzz --extra-index-url https://gitlab.com/api/v4/projects/19904939/packages/pypi/simple - -RUN dnf install -y git +RUN pip install pythonfuzz --extra-index-url https://gitlab.com/api/v4/projects/19904939/packages/pypi/simple \ No newline at end of file