From cd81b56e16c2e6dac5a3020a5470cea73f0e0766 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 22:30:38 +0000 Subject: [PATCH] Use pip3 instead of pip --- .gitea/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2e44cb2..1d6523f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -8,7 +8,9 @@ jobs: - name: Checkout run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/man-card.git - - name: Install dependencies + - name: Check pip run: | - pip install click fpdf2 Pillow rich pytest - pip list | grep -E "(click|fpdf|Pillow|pytest)" + which pip3 + pip3 --version + pip3 install click fpdf2 Pillow rich pytest pytest-cov + pip3 list | grep -E "(click|fpdf|Pillow|pytest)"