From f6f26d7763358dba35af717d45d00c3464bfdb3f Mon Sep 17 00:00:00 2001 From: cfdaily Date: Sun, 14 Jun 2026 00:35:15 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20pip=20upgrade=20+=20--no-cache-dir=20?= =?UTF-8?q?=E9=98=B2=E6=97=A7=20pip=20dist-info=20=E6=8D=9F=E5=9D=8F?= =?UTF-8?q?=EF=BC=88=E5=A7=9C=E7=BB=B4=E5=BB=BA=E8=AE=AE=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5b1fbb8..8cacba4 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -27,6 +27,7 @@ jobs: - name: Setup Python run: | python3 -m venv /tmp/ci-venv-lint + /tmp/ci-venv-lint/bin/pip install --quiet --upgrade pip /tmp/ci-venv-lint/bin/pip install --quiet flake8 - name: Lint with flake8 @@ -44,7 +45,8 @@ jobs: run: | rm -rf /tmp/ci-venv-test python3 -m venv /tmp/ci-venv-test - /tmp/ci-venv-test/bin/pip install --quiet fastapi pydantic pyyaml uvicorn requests pytest pytest-asyncio httpx + /tmp/ci-venv-test/bin/pip install --quiet --upgrade pip + /tmp/ci-venv-test/bin/pip install --quiet --no-cache-dir fastapi pydantic pyyaml uvicorn requests pytest pytest-asyncio httpx - name: Debug environment run: | -- 2.45.4