From b34d791d058239ff417b5695294b86ebf656f42c Mon Sep 17 00:00:00 2001 From: Ana Maria Martinez Gomez Date: Tue, 13 Apr 2021 12:06:05 +0200 Subject: [PATCH] build: Fix binary for Windows 7 Python 3.9 doesn't support Windows 7. Build with Python 3.8 instead. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 35f47c51..0e43beb7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,10 +26,10 @@ jobs: uses: actions/checkout@v2 with: submodules: true - - name: Set up Python 3.9 + - name: Set up Python 3.8 uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: 3.8 - if: matrix.os == 'ubuntu-16.04' run: sudo apt-get install -y libyaml-dev - name: Install PyInstaller