Skip to content

Commit 41ea852

Browse files
author
Martin Urban
committed
Add pyqt5 dependency to build wheel action
1 parent 5cc8eb2 commit 41ea852

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/build_app.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ jobs:
6464
python automations/my_automator.py build so
6565
python automations/my_automator.py build wheel
6666
pip install dist/*.whl
67-
python automations/my_automator.py build app
6867
6968
- name: Run pytest
7069
run: |
@@ -73,6 +72,11 @@ jobs:
7372
cd tests/
7473
pytest
7574
75+
- name: Build app package
76+
run: |
77+
source .venv/bin/activate
78+
python automations/my_automator.py build app
79+
7680
- name: Upload artifact
7781
uses: actions/upload-artifact@v4
7882
with:

.github/workflows/build_wheel.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747
source .venv/bin/activate
4848
python -m pip install wheel setuptools # setuptools needed for Python >=3.12
4949
python -m pip install -r requirements.txt
50+
python -m pip install pyqt5
5051
5152
- name: Bootstrap vcpkg
5253
run: ${{ env.VCPKG_ROOT }}/bootstrap-vcpkg.sh -disableMetrics

0 commit comments

Comments
 (0)