Fix pypinstaller to version 3 in build workflow

pyinstaller 4 doesn't support Python 2.7. Without a version, it takes
the last version making the workflow fail.
This commit is contained in:
Ana María Martínez Gómez
2020-08-15 09:18:13 +02:00
parent b94f665d4b
commit f7925c2990

View File

@@ -31,7 +31,8 @@ jobs:
with:
python-version: 2.7
- name: Install PyInstaller
run: pip install pyinstaller
# pyinstaller 4 doesn't support Python 2.7
run: pip install 'pyinstaller==3.*'
- name: Install capa
run: pip install -e .
- name: Build standalone executable