Skip to content

Commit

Permalink
ci(pyinstaller): Limit version to v5.3.12
Browse files Browse the repository at this point in the history
PyInstaller >=6.0 seems to cause significantly more false positives from antivirus programs

Closes #944
  • Loading branch information
radimkarnis committed Feb 5, 2024
1 parent 2d8a3ad commit 8f38367
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build_esptool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ jobs:
with:
python-version: 3.8
- name: Install dependencies
# PyInstaller >=6.0 results in significantly more antivirus false positives
run: |
python -m pip install --upgrade pip
pip install pyinstaller
pip install pyinstaller==5.13.2
pip install --user -e .
- name: Build with PyInstaller
run: |
Expand Down

0 comments on commit 8f38367

Please sign in to comment.