From f292a4902f8adc9e343a00839a5ab5880551572a Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 14 Mar 2021 19:32:14 +0200 Subject: [PATCH] .drone.yml: Install git for some pip deps --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 9b3e556..9dd75e7 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,7 +9,7 @@ steps: commands: - id - python -V - - apt update && apt install -y gcc g++ libicu-dev pkg-config + - apt update && apt install -y gcc g++ libicu-dev pkg-config git - pip install -r requirements-dev.txt --- @@ -23,7 +23,7 @@ steps: commands: - id - python -V - - apt update && apt install -y gcc g++ libicu-dev pkg-config + - apt update && apt install -y gcc g++ libicu-dev pkg-config git - pip install -r requirements-dev.txt --- @@ -37,7 +37,7 @@ steps: commands: - id - python -V - - apt update && apt install -y gcc g++ libicu-dev pkg-config + - apt update && apt install -y gcc g++ libicu-dev pkg-config git - pip install -r requirements-dev.txt # vim: ts=2 sw=2 et