.drone.yml: Also install gcc for all Python containers
continuous-integration/drone/push Build is passing Details

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.
This commit is contained in:
Alan Orth 2021-07-06 16:44:13 +03:00
parent dd0937179c
commit 5cdba6acb1
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 3 additions and 3 deletions

View File

@ -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