From da2eae7e6838e26da966423b8dfede4631485cad Mon Sep 17 00:00:00 2001 From: Kirill Morozov Date: Fri, 17 May 2024 22:19:39 +0300 Subject: [PATCH] fix: python depenency install (#71) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8074639..a9993e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: (cd third_party && git clone -b develop --single-branch --depth 1 https://github.com/userver-framework/userver.git) sudo apt update sudo apt install --allow-downgrades -y $(cat third_party/userver/scripts/docs/en/deps/${{matrix.os}}.md | tr '\n' ' ') - pip install -r requirements.txt + python3 -m pip install -r requirements.txt - name: Setup ccache run: |