From 5cdba6acb1b42f9ca31176571b1729f0cc794ec8 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Tue, 6 Jul 2021 16:44:13 +0300 Subject: [PATCH] .drone.yml: Also install gcc for all Python containers We previously only needed gcc for typed-ast in Python 3.9, but now we actually need gcc to compile psycopg2 in all of them. --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 87666f6..c1aca17 100644 --- a/.drone.yml +++ b/.drone.yml @@ -71,7 +71,7 @@ steps: commands: - id - python -V - - apt update && apt install -y git libpq-dev + - apt update && apt install -y gcc git libpq-dev - pip install -r requirements-dev.txt - pytest @@ -110,7 +110,7 @@ steps: commands: - id - python -V - - apt update && apt install -y git libpq-dev + - apt update && apt install -y gcc git libpq-dev - pip install -r requirements-dev.txt - pytest @@ -149,7 +149,7 @@ steps: commands: - id - python -V - - apt update && apt install -y git libpq-dev + - apt update && apt install -y gcc git libpq-dev - pip install -r requirements-dev.txt - pytest