From f7925c2990b2ca59b2dfa7a3787dc892f44243ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ana=20Mar=C3=ADa=20Mart=C3=ADnez=20G=C3=B3mez?= Date: Sat, 15 Aug 2020 09:18:13 +0200 Subject: [PATCH] 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. --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2042eb89..2485f1da 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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