Skip to content

Commit 684b4da

Browse files
author
Martin Urban
committed
Add cx_freeze and pyqt5 as dependencies to GitHub action Build Exe
1 parent c441cce commit 684b4da

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build_exe.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ 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 cx_freeze
51+
python -m pip install pyqt5
5052
5153
- name: Bootstrap vcpkg
5254
run: ${{ env.VCPKG_ROOT }}/bootstrap-vcpkg.sh -disableMetrics
@@ -65,5 +67,5 @@ jobs:
6567
- name: Upload artifact
6668
uses: actions/upload-artifact@v4
6769
with:
68-
name: macpymol-wheel-${{ matrix.os }}
70+
name: macOS_PyMOL-exe-${{ matrix.os }}-${{ matrix.python-version }}
6971
path: dist/*

.github/workflows/build_wheel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,5 @@ jobs:
6565
- name: Upload artifact
6666
uses: actions/upload-artifact@v4
6767
with:
68-
name: macpymol-wheel-${{ matrix.os }}
68+
name: macOS_PyMOL-wheel-${{ matrix.os }}-${{ matrix.python-version }}
6969
path: dist/*.whl

0 commit comments

Comments
 (0)