From a0043eaa2176fe6d1560664b0e494b8321ad4168 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 21:08:05 +0000 Subject: [PATCH] fix: CI get-pip.py --- .gitea/workflows/ci.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4b08e3a..b8ce101 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -7,9 +7,6 @@ jobs: - run: | git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git /tmp/confsync - run: | - python3 -m ensurepip --upgrade - python3 -m pip install --upgrade pip - python3 -m pip --version - - run: | - python3 -m pip install pytest - python3 -m pytest --version + curl -sS https://bootstrap.pypa.io/get-pip.py -o /tmp/get-pip.py + python3 /tmp/get-pip.py --force-reinstall + pip --version