mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
Pyinstaller 5.1 breaks our build.
This commit is contained in:
parent
8e92504a45
commit
4ce0fb4de9
3 changed files with 66 additions and 66 deletions
2
.github/workflows/build-project-linux.yml
vendored
2
.github/workflows/build-project-linux.yml
vendored
|
@ -37,7 +37,7 @@ jobs:
|
||||||
pip3 install pyaudio
|
pip3 install pyaudio
|
||||||
pip3 install psutil
|
pip3 install psutil
|
||||||
pip3 install crcengine
|
pip3 install crcengine
|
||||||
pip3 install pyinstaller
|
pip3 install 'pyinstaller<5.1'
|
||||||
pip3 install ujson
|
pip3 install ujson
|
||||||
pip3 install pyserial
|
pip3 install pyserial
|
||||||
pip3 install numpy
|
pip3 install numpy
|
||||||
|
|
2
.github/workflows/build-project-mac.yml
vendored
2
.github/workflows/build-project-mac.yml
vendored
|
@ -35,7 +35,7 @@ jobs:
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip3 install psutil
|
pip3 install psutil
|
||||||
pip3 install crcengine
|
pip3 install crcengine
|
||||||
pip3 install pyinstaller
|
pip3 install 'pyinstaller<5.1'
|
||||||
pip3 install ujson
|
pip3 install ujson
|
||||||
pip3 install pyserial
|
pip3 install pyserial
|
||||||
pip3 install numpy
|
pip3 install numpy
|
||||||
|
|
2
.github/workflows/build-project-win.yml
vendored
2
.github/workflows/build-project-win.yml
vendored
|
@ -34,7 +34,7 @@ jobs:
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install psutil
|
pip install psutil
|
||||||
pip install crcengine
|
pip install crcengine
|
||||||
pip install pyinstaller
|
pip install 'pyinstaller<5.1'
|
||||||
pip install ujson
|
pip install ujson
|
||||||
pip install pyserial
|
pip install pyserial
|
||||||
pip install numpy
|
pip install numpy
|
||||||
|
|
Loading…
Reference in a new issue