We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b037efd commit 09f99f0Copy full SHA for 09f99f0
.github/workflows/build-win.yml
@@ -18,9 +18,10 @@ jobs:
18
python-version: '3.12'
19
20
- name: Install dependencies
21
- run: python -m pip install --upgrade pip setuptools wheel
22
- run: pip install -r src/requirements.txt
23
- run: pip install -r build/requirements.txt
+ run: |
+ python -m pip install --upgrade pip setuptools wheel
+ pip install -r src/requirements.txt
24
+ pip install -r build/requirements.txt
25
26
- name: Build executable
27
run: pyinstaller build/chirplab.spec
0 commit comments