From 12eda5d73c4e9bd8c93cb9bb540f197d0d3c3c37 Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Tue, 12 Dec 2023 19:26:23 +0200 Subject: [PATCH] dev_scripts: Add missing git dependency Add missing git dependency, which is required to run the `isort` command on the development environment. --- dev_scripts/env.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev_scripts/env.py b/dev_scripts/env.py index c7c1114..206640e 100755 --- a/dev_scripts/env.py +++ b/dev_scripts/env.py @@ -89,7 +89,7 @@ RUN apt-get update \ && rm -rf /var/lib/apt/lists/* RUN apt-get update \ && apt-get install -y --no-install-recommends dh-python make build-essential \ - fakeroot {qt_deps} pipx python3 python3-dev python3-venv python3-stdeb \ + git fakeroot {qt_deps} pipx python3 python3-dev python3-venv python3-stdeb \ python3-all \ && rm -rf /var/lib/apt/lists/* # NOTE: `pipx install poetry` fails on Ubuntu Focal, when installed through APT. By @@ -108,7 +108,7 @@ RUN apt-get update \ # FIXME: Install Poetry on Fedora via package manager. DOCKERFILE_BUILD_DEV_FEDORA_DEPS = r""" -RUN dnf install -y rpm-build podman python3 python3-devel python3-poetry-core \ +RUN dnf install -y git rpm-build podman python3 python3-devel python3-poetry-core \ pipx make qt6-qtbase-gui \ && dnf clean all