1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-08-17 18:08:30 +00:00

still use python 3.10 for x64 and x86

Authored by: bashonly
This commit is contained in:
bashonly 2025-08-13 11:59:16 -05:00
parent e98ada969a
commit c63d914255
No known key found for this signature in database
GPG Key ID: 783F096F253D15B0

View File

@ -397,15 +397,24 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
include: include:
- { arch: 'x64', runner: 'windows-2025', suffix: '' } - arch: 'x64'
- { arch: 'x86', runner: 'windows-2025', suffix: '_x86'} runner: windows-2025
- { arch: 'arm64', runner: 'windows-11-arm', suffix: '_arm64' } 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: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: "3.11" # arm64 only has Python >= 3.11 available python-version: ${{ matrix.python_version }}
architecture: ${{ matrix.arch }} architecture: ${{ matrix.arch }}
- name: Install Requirements - name: Install Requirements
run: | # Custom pyinstaller built with https://github.com/yt-dlp/pyinstaller-builds run: | # Custom pyinstaller built with https://github.com/yt-dlp/pyinstaller-builds