From 46f0674302cc8d45e747bb34c21a59be6cc8045c Mon Sep 17 00:00:00 2001 From: Radiquum Date: Wed, 25 Jun 2025 16:05:02 +0500 Subject: [PATCH] fix/ci: use the .build additional deps for python instead of .dev --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8a1ec75..936ef08 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: - name: "[DEPS/Build] Backend" run: | pip install -r requirements.txt - pip install -r requirements.dev.txt + pip install -r requirements.build.txt - name: "[DEPS/Build] Frontend" run: bun install working-directory: ./gui