Skip to content

Commit ac41c1b

Browse files
committed
.github: specify Python3 in windows_build.yml
1 parent 6db88f6 commit ac41c1b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Diff for: .github/workflows/windows_build.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ jobs:
2323
python-version: ${{ matrix.python-version }}
2424
- name: Install dependencies
2525
run: |
26-
python -m pip install -U wheel setuptools pip
27-
python -m pip install -U pywin32 lxml pymavlink numpy matplotlib pyserial opencv-python PyYAML Pygame Pillow wxpython prompt-toolkit scipy
28-
python -m pip install -U openai wave pyaudio
29-
python -m pip install -U pyinstaller==6.7.0 packaging
26+
python3 -m pip install -U wheel setuptools pip
27+
python3 -m pip install -U pywin32 lxml pymavlink numpy matplotlib pyserial opencv-python PyYAML Pygame Pillow wxpython prompt-toolkit scipy
28+
python3 -m pip install -U openai wave pyaudio
29+
python3 -m pip install -U pyinstaller==6.7.0 packaging
3030
- name: Download Inno Setup installer
3131
run: curl -L -o installer.exe http://files.jrsoftware.org/is/6/innosetup-6.3.1.exe
3232
- name: Install Inno Setup
3333
run: ./installer.exe /verysilent /allusers /dir=inst
3434
- name: Build MAVProxy
3535
run: |
36-
python -m pip install .[recommended] --user
37-
python -m pip list
36+
python3 -m pip install .[recommended] --user
37+
python3 -m pip list
3838
- name: Prepare installer
3939
run: |
4040
cd MAVProxy
@@ -55,7 +55,7 @@ jobs:
5555
run: |
5656
cd windows
5757
$env:VERSION=$(python returnVersion.py)
58-
python returnVersion.py > version.txt
58+
python3 returnVersion.py > version.txt
5959
ISCC.exe /dMyAppVersion=$env:VERSION mavproxy.iss
6060
ls Output
6161
- name: Archive build

0 commit comments

Comments
 (0)