From 22cea7ea5c3abe13778c32454507f63792ae02a9 Mon Sep 17 00:00:00 2001 From: Kumi Date: Mon, 1 Jul 2024 10:07:32 +0200 Subject: [PATCH] fix(build): simplify Python package installation Condensed the installation commands to streamline the setup process. Removed redundant pip upgrade step to avoid potential conflicts and expedite build workflow. No change to the overall functionality or dependency management. --- .forgejo/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index ee2e744..80b2389 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -17,8 +17,7 @@ jobs: run: | apt update apt install -y python3 python3-pip - python3 -m pip install --upgrade pip - pip3 install -r requirements.txt --break-system-packages + python3 -m pip install -r requirements.txt --break-system-packages - name: Generate static site run: python3 main.py