From 0a34c1547fc426462ca04f81f35eed96ac187e43 Mon Sep 17 00:00:00 2001 From: Carlos Quintana Date: Thu, 28 Apr 2022 15:22:23 +0200 Subject: [PATCH] Fix python 3.10 --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b18ff656..68109407 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -59,6 +59,12 @@ jobs: path: .venv key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }} + - name: Install OS dependencies + if: ${{ matrix.python-version }} == '3.10' + run: | + sudo apt update + sudo apt install -y libre2-dev + - name: Install dependencies if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' run: poetry install --no-interaction --no-root