From 572efa0055bad4fdd73387be0afba1c3d21499e4 Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 10 Dec 2022 04:24:08 +0100 Subject: [PATCH] Update workflow to use requirements.txt --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ae30d7f..140dfbd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,7 @@ jobs: - name: Update builds tools run: python -m pip install --upgrade setuptools wheel - name: Install dependencies - run: python -m pip install --upgrade PyQt6 certifi + run: python -m pip install -r requirements.txt - name: Install PyInstaller run: python -m pip install --upgrade PyInstaller - name: Run pyinst.py @@ -43,7 +43,7 @@ jobs: - name: Update builds tools run: python -m pip install --upgrade setuptools wheel - name: Install dependencies - run: python -m pip install --upgrade PyQt6 certifi + run: python -m pip install -r requirements.txt - name: Install PyInstaller run: python -m pip install --upgrade PyInstaller - name: Run PyInstaller @@ -69,7 +69,7 @@ jobs: - name: Update builds tools run: python -m pip install --upgrade setuptools wheel - name: Install dependencies - run: python -m pip install --upgrade PyQt5 certifi + run: python -m pip install -r requirements-qt5.txt - name: Install PyInstaller run: python -m pip install --upgrade PyInstaller - name: Run PyInstaller @@ -95,7 +95,7 @@ jobs: - name: Update builds tools run: python -m pip install --upgrade setuptools wheel - name: Install dependencies - run: python -m pip install --upgrade PyQt6 certifi + run: python -m pip install -r requirements.txt - name: Install PyInstaller run: python -m pip install --upgrade PyInstaller - name: Run pyinst.py