From c63d914255369212f1869dec05ecde6f7942a508 Mon Sep 17 00:00:00 2001 From: bashonly Date: Wed, 13 Aug 2025 11:59:16 -0500 Subject: [PATCH] still use python 3.10 for x64 and x86 Authored by: bashonly --- .github/workflows/build.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 58d1f0a63..e5091c0f2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -397,15 +397,24 @@ jobs: fail-fast: false matrix: include: - - { arch: 'x64', runner: 'windows-2025', suffix: '' } - - { arch: 'x86', runner: 'windows-2025', suffix: '_x86'} - - { arch: 'arm64', runner: 'windows-11-arm', suffix: '_arm64' } + - arch: 'x64' + runner: windows-2025 + suffix: '' + python_version: '3.10' + - arch: 'x86' + runner: windows-2025 + suffix: '_x86' + python_version: '3.10' + - arch: 'arm64' + runner: windows-11-arm + suffix: '_arm64' + python_version: '3.11' # arm64 only has Python >= 3.11 available steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: "3.11" # arm64 only has Python >= 3.11 available + python-version: ${{ matrix.python_version }} architecture: ${{ matrix.arch }} - name: Install Requirements run: | # Custom pyinstaller built with https://github.com/yt-dlp/pyinstaller-builds