Skip to content

Commit

Permalink
dev_scripts: Add missing git dependency
Browse files Browse the repository at this point in the history
Add missing git dependency, which is required to run the `isort` command
on the development environment.
  • Loading branch information
apyrgio committed Dec 21, 2023
1 parent e137976 commit 12eda5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev_scripts/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
&& 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
Expand All @@ -108,7 +108,7 @@

# 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
Expand Down

0 comments on commit 12eda5d

Please sign in to comment.