From 6e39d12af56b830f7a7160b6bda22ade143d7f59 Mon Sep 17 00:00:00 2001 From: YuYang Shen Date: Fri, 5 Sep 2025 11:47:27 +0800 Subject: [PATCH] Add --no-cache-dir to prevent error --- .gitea/workflows/sphinx_deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/sphinx_deploy.yml b/.gitea/workflows/sphinx_deploy.yml index 18f2f41..829d341 100644 --- a/.gitea/workflows/sphinx_deploy.yml +++ b/.gitea/workflows/sphinx_deploy.yml @@ -37,7 +37,7 @@ jobs: if [ $REQ_MOD_TIME -gt $VENV_MOD_TIME ]; then echo "Master branch requirements updated, installing new dependencies..." - pip install -r requirements.txt + pip install -r requirements.txt --no-cache-dir echo $REQ_MOD_TIME > .venv-shared/last_update.txt fi fi