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: |