From 29d04a25f0ca7ca89a3db0ae4565f5cb9c075535 Mon Sep 17 00:00:00 2001 From: Max P Date: Sun, 27 Apr 2025 10:57:19 +0000 Subject: [PATCH] Use Poetry to install wheel and download dependencies in build-deb workflow --- .github/workflows/build-deb.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-deb.yml b/.github/workflows/build-deb.yml index c46f9c7..dd3b2b4 100644 --- a/.github/workflows/build-deb.yml +++ b/.github/workflows/build-deb.yml @@ -43,8 +43,8 @@ jobs: - name: 📥 Download Wheels for Dependencies run: | mkdir -p dist/wheels - pip install wheel - pip download --only-binary=:all: --dest dist -r requirements.txt + poetry run pip install wheel + poetry run pip download --only-binary=:all: --dest dist -r requirements.txt - name: 🛠 Build Project Wheel run: |