From 58aaf12fceb4e1da6c4cbe43274ef313512347fc Mon Sep 17 00:00:00 2001 From: kraanzu Date: Wed, 18 Oct 2023 23:00:31 +0530 Subject: [PATCH] fix: change from `pip` to `poetry` --- .github/workflows/app.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/app.yml b/.github/workflows/app.yml index 55397ef4..dc918ace 100644 --- a/.github/workflows/app.yml +++ b/.github/workflows/app.yml @@ -23,8 +23,8 @@ jobs: python-version: "3.10" - name: Install dependencies run: | - python -m pip install --upgrade pip - pip install -r requirements.txt + python -m pip install --upgrade poetry + poetry install pip install pyinstaller - name: Package app with pyinstaller run: | @@ -46,8 +46,8 @@ jobs: python-version: "3.10" - name: Install dependencies run: | - python -m pip install --upgrade pip - pip install -r requirements.txt + python -m pip install --upgrade poetry + poetry install pip install pyinstaller - name: Package app with pyinstaller run: | @@ -69,8 +69,8 @@ jobs: python-version: "3.10" - name: Install dependencies run: | - python -m pip install --upgrade pip - pip install -r requirements.txt + python -m pip install --upgrade poetry + poetry install pip install pyinstaller - name: Package app with pyinstaller run: |