From f7abb6bf4298ba6df725202ec57fd8792eb1e0e7 Mon Sep 17 00:00:00 2001 From: Tolaria Date: Wed, 3 Jun 2026 22:56:04 +0800 Subject: [PATCH] ci: install python3-venv inside python:3.12 container --- .forgejo/workflows/docs.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.forgejo/workflows/docs.yml b/.forgejo/workflows/docs.yml index 911e162..7d9f62f 100644 --- a/.forgejo/workflows/docs.yml +++ b/.forgejo/workflows/docs.yml @@ -15,6 +15,10 @@ jobs: - run: python3 --version + - run: | + apt-get update + apt-get install -y python3-venv python3-pip + - run: | python3 -m venv /tmp/venv . /tmp/venv/bin/activate