File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -23,18 +23,18 @@ jobs:
23
23
python-version : ${{ matrix.python-version }}
24
24
- name : Install dependencies
25
25
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
30
30
- name : Download Inno Setup installer
31
31
run : curl -L -o installer.exe http://files.jrsoftware.org/is/6/innosetup-6.3.1.exe
32
32
- name : Install Inno Setup
33
33
run : ./installer.exe /verysilent /allusers /dir=inst
34
34
- name : Build MAVProxy
35
35
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
38
38
- name : Prepare installer
39
39
run : |
40
40
cd MAVProxy
55
55
run : |
56
56
cd windows
57
57
$env:VERSION=$(python returnVersion.py)
58
- python returnVersion.py > version.txt
58
+ python3 returnVersion.py > version.txt
59
59
ISCC.exe /dMyAppVersion=$env:VERSION mavproxy.iss
60
60
ls Output
61
61
- name : Archive build
You can’t perform that action at this time.
0 commit comments