[build] Upgrade all Linux binaries to Python 3.14 (#16738)

Authored by: bashonly
This commit is contained in:
bashonly 2026-05-16 15:06:48 -05:00 committed by GitHub
parent a85b386212
commit 410e0af537
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 4 deletions

View File

@ -124,7 +124,7 @@ jobs:
id: linux_matrix
env:
INPUTS: ${{ toJSON(inputs) }}
PYTHON_VERSION: '3.13'
PYTHON_VERSION: '3.14'
UPDATE_TO: yt-dlp/yt-dlp@2025.09.05
shell: python
run: |
@ -152,12 +152,10 @@ jobs:
'os': 'musllinux',
'arch': 'x86_64',
'runner': 'ubuntu-24.04',
'python_version': '3.14',
}, {
'os': 'musllinux',
'arch': 'aarch64',
'runner': 'ubuntu-24.04-arm',
'python_version': '3.14',
}],
}
INPUTS = json.loads(os.environ['INPUTS'])

View File

@ -2,7 +2,7 @@
set -exuo pipefail
if [[ -z "${PYTHON_VERSION:-}" ]]; then
PYTHON_VERSION="3.13"
PYTHON_VERSION="3.14"
echo "Defaulting to using Python ${PYTHON_VERSION}"
fi