Update workflow to use requirements.txt
This commit is contained in:
parent
567f40b47b
commit
572efa0055
1 changed files with 4 additions and 4 deletions
8
.github/workflows/main.yml
vendored
8
.github/workflows/main.yml
vendored
|
@ -17,7 +17,7 @@ jobs:
|
||||||
- name: Update builds tools
|
- name: Update builds tools
|
||||||
run: python -m pip install --upgrade setuptools wheel
|
run: python -m pip install --upgrade setuptools wheel
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: python -m pip install --upgrade PyQt6 certifi
|
run: python -m pip install -r requirements.txt
|
||||||
- name: Install PyInstaller
|
- name: Install PyInstaller
|
||||||
run: python -m pip install --upgrade PyInstaller
|
run: python -m pip install --upgrade PyInstaller
|
||||||
- name: Run pyinst.py
|
- name: Run pyinst.py
|
||||||
|
@ -43,7 +43,7 @@ jobs:
|
||||||
- name: Update builds tools
|
- name: Update builds tools
|
||||||
run: python -m pip install --upgrade setuptools wheel
|
run: python -m pip install --upgrade setuptools wheel
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: python -m pip install --upgrade PyQt6 certifi
|
run: python -m pip install -r requirements.txt
|
||||||
- name: Install PyInstaller
|
- name: Install PyInstaller
|
||||||
run: python -m pip install --upgrade PyInstaller
|
run: python -m pip install --upgrade PyInstaller
|
||||||
- name: Run PyInstaller
|
- name: Run PyInstaller
|
||||||
|
@ -69,7 +69,7 @@ jobs:
|
||||||
- name: Update builds tools
|
- name: Update builds tools
|
||||||
run: python -m pip install --upgrade setuptools wheel
|
run: python -m pip install --upgrade setuptools wheel
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: python -m pip install --upgrade PyQt5 certifi
|
run: python -m pip install -r requirements-qt5.txt
|
||||||
- name: Install PyInstaller
|
- name: Install PyInstaller
|
||||||
run: python -m pip install --upgrade PyInstaller
|
run: python -m pip install --upgrade PyInstaller
|
||||||
- name: Run PyInstaller
|
- name: Run PyInstaller
|
||||||
|
@ -95,7 +95,7 @@ jobs:
|
||||||
- name: Update builds tools
|
- name: Update builds tools
|
||||||
run: python -m pip install --upgrade setuptools wheel
|
run: python -m pip install --upgrade setuptools wheel
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: python -m pip install --upgrade PyQt6 certifi
|
run: python -m pip install -r requirements.txt
|
||||||
- name: Install PyInstaller
|
- name: Install PyInstaller
|
||||||
run: python -m pip install --upgrade PyInstaller
|
run: python -m pip install --upgrade PyInstaller
|
||||||
- name: Run pyinst.py
|
- name: Run pyinst.py
|
||||||
|
|
Loading…
Reference in a new issue