Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.

Commit 6cdc133

Browse files
Add project dependencies before building pyinstaller executable
1 parent 3909f54 commit 6cdc133

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release_flow.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,11 @@ jobs:
7373
- name: Set up Python 3.10
7474
uses: actions/setup-python@v3
7575
with:
76-
python-version: "3.10"
76+
python-version: "3.10"
77+
- name: Install dependencies
78+
run: |
79+
python setup.py develop
80+
pip install -r requirements.txt
7781
- name: Install pyinstaller
7882
run: pip install pyinstaller
7983
- name: Build with pyinstaller for ${{matrix.TARGET}}

0 commit comments

Comments
 (0)