Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6aa4f2fae2 |
@@ -20,7 +20,7 @@ on:
|
|||||||
PLATFORMS:
|
PLATFORMS:
|
||||||
description: 'Platforms for execution in "os" or "os_arch" format (arch is "x64" by default)'
|
description: 'Platforms for execution in "os" or "os_arch" format (arch is "x64" by default)'
|
||||||
required: true
|
required: true
|
||||||
default: 'ubuntu-22.04,ubuntu-22.04_arm64,ubuntu-24.04,ubuntu-24.04_arm64,macos-15-intel_x64,macos-14_arm64,windows-2022_x64,windows-2022_x86,windows-11_arm64'
|
default: 'ubuntu-22.04,ubuntu-22.04_arm64,ubuntu-24.04,ubuntu-24.04_arm64,macos-15-intel_x64,macos-14_arm64,windows-2022_x64,windows-2022_x86,windows-2022_arm64'
|
||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- 'versions-manifest.json'
|
- 'versions-manifest.json'
|
||||||
@@ -44,7 +44,7 @@ jobs:
|
|||||||
- name: Generate execution matrix
|
- name: Generate execution matrix
|
||||||
id: generate-matrix
|
id: generate-matrix
|
||||||
run: |
|
run: |
|
||||||
[String[]]$configurations = "${{ inputs.platforms || 'ubuntu-22.04,ubuntu-22.04_arm64,ubuntu-24.04,ubuntu-24.04_arm64,macos-15-intel,macos-14_arm64,windows-2022_x64,windows-2022_x86,windows-11_arm64' }}".Split(",").Trim()
|
[String[]]$configurations = "${{ inputs.platforms || 'ubuntu-22.04,ubuntu-22.04_arm64,ubuntu-24.04,ubuntu-24.04_arm64,macos-15-intel,macos-14_arm64,windows-2022_x64,windows-2022_x86,windows-2022_arm64' }}".Split(",").Trim()
|
||||||
[String[]]$buildModes = "${{ inputs.threading_build_modes || 'default' }}".Split(",").Trim()
|
[String[]]$buildModes = "${{ inputs.threading_build_modes || 'default' }}".Split(",").Trim()
|
||||||
$matrix = @()
|
$matrix = @()
|
||||||
|
|
||||||
@@ -56,7 +56,11 @@ jobs:
|
|||||||
switch -wildcard ($os) {
|
switch -wildcard ($os) {
|
||||||
"*ubuntu*" { $platform = $os.Replace("ubuntu","linux"); if ($arch -eq "arm64" ) { $os = "${os}-arm" } }
|
"*ubuntu*" { $platform = $os.Replace("ubuntu","linux"); if ($arch -eq "arm64" ) { $os = "${os}-arm" } }
|
||||||
"*macos*" { $platform = 'darwin' }
|
"*macos*" { $platform = 'darwin' }
|
||||||
"*windows*" { $platform = 'win32'; if ($arch -eq "arm64" ) { $os = "${os}-arm" } }
|
"*windows*" { $platform = 'win32' }
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($configuration -eq "windows-2022_arm64") {
|
||||||
|
$os = "setup-actions-windows-arm64-4-core"
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($buildMode -eq "freethreaded") {
|
if ($buildMode -eq "freethreaded") {
|
||||||
@@ -85,8 +89,32 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.13.7' }}-${{ matrix.platform }}-${{ matrix.arch }}
|
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.13.7' }}-${{ matrix.platform }}-${{ matrix.arch }}
|
||||||
steps:
|
steps:
|
||||||
|
- name: Setup Environment on Windows ARM64 Runner
|
||||||
|
if: matrix.os == 'setup-actions-windows-arm64-4-core'
|
||||||
|
shell: powershell
|
||||||
|
run: |
|
||||||
|
# Install Chocolatey
|
||||||
|
Set-ExecutionPolicy Bypass -Scope Process -Force
|
||||||
|
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
|
||||||
|
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
||||||
|
echo "C:\ProgramData\Chocolatey\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
|
|
||||||
|
# Install PowerShell
|
||||||
|
choco install powershell-core -y
|
||||||
|
echo "C:\Program Files\PowerShell\7" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
|
|
||||||
|
# Install Git
|
||||||
|
choco install git -y
|
||||||
|
echo "C:\Program Files\Git\cmd" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
|
|
||||||
|
|
||||||
|
# Install 7-Zip
|
||||||
|
choco install 7zip -y
|
||||||
|
echo "C:\ProgramData\chocolatey\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
|
|
||||||
|
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v5
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
@@ -96,7 +124,7 @@ jobs:
|
|||||||
-Platform ${{ matrix.platform }} -Architecture ${{ matrix.arch }}
|
-Platform ${{ matrix.platform }} -Architecture ${{ matrix.arch }}
|
||||||
|
|
||||||
- name: Publish artifact
|
- name: Publish artifact
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ env.ARTIFACT_NAME }}
|
name: ${{ env.ARTIFACT_NAME }}
|
||||||
path: ${{ runner.temp }}/artifact
|
path: ${{ runner.temp }}/artifact
|
||||||
@@ -112,8 +140,31 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.13.7' }}-${{ matrix.platform }}-${{ matrix.arch }}
|
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.13.7' }}-${{ matrix.platform }}-${{ matrix.arch }}
|
||||||
steps:
|
steps:
|
||||||
|
- name: Setup Environment on Windows ARM64 Runner
|
||||||
|
if: matrix.os == 'setup-actions-windows-arm64-4-core'
|
||||||
|
shell: powershell
|
||||||
|
run: |
|
||||||
|
# Install Chocolatey
|
||||||
|
Set-ExecutionPolicy Bypass -Scope Process -Force
|
||||||
|
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
|
||||||
|
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
||||||
|
echo "C:\ProgramData\Chocolatey\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
|
|
||||||
|
# Install PowerShell
|
||||||
|
choco install powershell-core -y
|
||||||
|
echo "C:\Program Files\PowerShell\7" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
|
|
||||||
|
# Install Git
|
||||||
|
choco install git -y
|
||||||
|
echo "C:\Program Files\Git\cmd" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
|
|
||||||
|
|
||||||
|
# Install 7-Zip
|
||||||
|
choco install 7zip -y
|
||||||
|
echo "C:\ProgramData\chocolatey\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
|
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v5
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
@@ -126,7 +177,7 @@ jobs:
|
|||||||
run: if [ -d /Library/Frameworks/Python.framework ]; then sudo rm -rf /Library/Frameworks/Python.framework; fi
|
run: if [ -d /Library/Frameworks/Python.framework ]; then sudo rm -rf /Library/Frameworks/Python.framework; fi
|
||||||
|
|
||||||
- name: Download artifact
|
- name: Download artifact
|
||||||
uses: actions/download-artifact@v7
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ env.ARTIFACT_NAME }}
|
name: ${{ env.ARTIFACT_NAME }}
|
||||||
path: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
|
path: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
|
||||||
@@ -154,7 +205,7 @@ jobs:
|
|||||||
working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
|
working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
|
||||||
|
|
||||||
- name: Setup Python ${{ env.VERSION }}
|
- name: Setup Python ${{ env.VERSION }}
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: ${{ env.VERSION }}
|
python-version: ${{ env.VERSION }}
|
||||||
architecture: ${{ matrix.arch }}
|
architecture: ${{ matrix.arch }}
|
||||||
@@ -195,7 +246,7 @@ jobs:
|
|||||||
needs: test_python
|
needs: test_python
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/download-artifact@v7
|
- uses: actions/download-artifact@v4
|
||||||
|
|
||||||
- name: Publish Release ${{ env.VERSION }}
|
- name: Publish Release ${{ env.VERSION }}
|
||||||
id: create_release
|
id: create_release
|
||||||
@@ -221,7 +272,7 @@ jobs:
|
|||||||
}
|
}
|
||||||
|
|
||||||
- name: Upload release assets
|
- name: Upload release assets
|
||||||
uses: actions/github-script@v8
|
uses: actions/github-script@v7
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
script: |
|
script: |
|
||||||
@@ -245,7 +296,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Trigger "Create Pull Request" workflow
|
- name: Trigger "Create Pull Request" workflow
|
||||||
uses: actions/github-script@v8
|
uses: actions/github-script@v7
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
script: |
|
script: |
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v5
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v5
|
||||||
|
|
||||||
- name: Trigger python workflow
|
- name: Trigger python workflow
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ jobs:
|
|||||||
python: [3.9.13, 3.10.11, 3.11.8, 3.12.7, 3.13.0]
|
python: [3.9.13, 3.10.11, 3.11.8, 3.12.7, 3.13.0]
|
||||||
steps:
|
steps:
|
||||||
- name: setup-python ${{ matrix.python }}
|
- name: setup-python ${{ matrix.python }}
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python }}
|
python-version: ${{ matrix.python }}
|
||||||
|
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ class NixPythonBuilder : PythonBuilder {
|
|||||||
$sourceUri = $this.GetSourceUri()
|
$sourceUri = $this.GetSourceUri()
|
||||||
Write-Host "Sources URI: $sourceUri"
|
Write-Host "Sources URI: $sourceUri"
|
||||||
|
|
||||||
$archiveFilepath = Download-File -Uri $sourceUri -OutputFolder $this.TempFolderLocation
|
$archiveFilepath = Download-File -Uri $sourceUri -OutputFolder $this.WorkFolderLocation
|
||||||
$expandedSourceLocation = Join-Path -Path $this.TempFolderLocation -ChildPath "SourceCode"
|
$expandedSourceLocation = Join-Path -Path $this.TempFolderLocation -ChildPath "SourceCode"
|
||||||
New-Item -Path $expandedSourceLocation -ItemType Directory
|
New-Item -Path $expandedSourceLocation -ItemType Directory
|
||||||
|
|
||||||
@@ -146,14 +146,6 @@ class NixPythonBuilder : PythonBuilder {
|
|||||||
$sourcesLocation = $this.Download()
|
$sourcesLocation = $this.Download()
|
||||||
|
|
||||||
Push-Location -Path $sourcesLocation
|
Push-Location -Path $sourcesLocation
|
||||||
|
|
||||||
# Patch for 3.15.0a6: Fix test_bz2 BIG_DATA to ensure two compressed blocks
|
|
||||||
# See: https://github.com/python/cpython/pull/145730
|
|
||||||
if (($this.Architecture -match "arm64") -and ($this.Platform -match "22\.04") -and ($this.Version -eq [semver]"3.15.0-alpha.6")) {
|
|
||||||
Write-Host "Applying patch for python/cpython#145730 (test_bz2 fix)..."
|
|
||||||
Execute-Command -Command "curl -sL -o Lib/test/test_bz2.py https://raw.githubusercontent.com/python/cpython/19676e5fc28bdee8325a062a31ddeee60960cf75/Lib/test/test_bz2.py"
|
|
||||||
}
|
|
||||||
|
|
||||||
Write-Host "Configure for $($this.Platform)..."
|
Write-Host "Configure for $($this.Platform)..."
|
||||||
$this.Configure()
|
$this.Configure()
|
||||||
|
|
||||||
|
|||||||
@@ -1,496 +1,4 @@
|
|||||||
[
|
[
|
||||||
{
|
|
||||||
"version": "3.15.0-alpha.7",
|
|
||||||
"stable": false,
|
|
||||||
"release_url": "https://github.com/actions/python-versions/releases/tag/3.15.0-alpha.7-22913288817",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-darwin-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-darwin-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-darwin-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-darwin-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-linux-22.04-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-linux-22.04-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-linux-22.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-linux-22.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-linux-22.04-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-linux-22.04-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-linux-22.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-linux-22.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-linux-24.04-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-linux-24.04-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-linux-24.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-linux-24.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-linux-24.04-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-linux-24.04-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-linux-24.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-linux-24.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-win32-arm64-freethreaded.zip",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-win32-arm64-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-win32-x64-freethreaded.zip",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-win32-x64-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-win32-x64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-win32-x86-freethreaded.zip",
|
|
||||||
"arch": "x86-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-win32-x86-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.7-win32-x86.zip",
|
|
||||||
"arch": "x86",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.7-22913288817/python-3.15.0-alpha.7-win32-x86.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "3.15.0-alpha.6",
|
|
||||||
"stable": false,
|
|
||||||
"release_url": "https://github.com/actions/python-versions/releases/tag/3.15.0-alpha.6-23011479936",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-darwin-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-darwin-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-darwin-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-darwin-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-linux-22.04-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-linux-22.04-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-linux-22.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-linux-22.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-linux-22.04-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-linux-22.04-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-linux-22.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-linux-22.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-linux-24.04-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-linux-24.04-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-linux-24.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-linux-24.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-linux-24.04-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-linux-24.04-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-linux-24.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-linux-24.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-win32-arm64-freethreaded.zip",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-win32-arm64-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-win32-x64-freethreaded.zip",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-win32-x64-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-win32-x64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-win32-x86-freethreaded.zip",
|
|
||||||
"arch": "x86-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-win32-x86-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.6-win32-x86.zip",
|
|
||||||
"arch": "x86",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.6-23011479936/python-3.15.0-alpha.6-win32-x86.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "3.15.0-alpha.5",
|
|
||||||
"stable": false,
|
|
||||||
"release_url": "https://github.com/actions/python-versions/releases/tag/3.15.0-alpha.5-21016111327",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-darwin-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-darwin-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-darwin-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-darwin-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-linux-22.04-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-linux-22.04-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-linux-22.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-linux-22.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-linux-22.04-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-linux-22.04-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-linux-22.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-linux-22.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-linux-24.04-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-linux-24.04-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-linux-24.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-linux-24.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-linux-24.04-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-linux-24.04-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-linux-24.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-linux-24.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-win32-arm64-freethreaded.zip",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-win32-arm64-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-win32-x64-freethreaded.zip",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-win32-x64-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-win32-x64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-win32-x86-freethreaded.zip",
|
|
||||||
"arch": "x86-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-win32-x86-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.5-win32-x86.zip",
|
|
||||||
"arch": "x86",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.5-21016111327/python-3.15.0-alpha.5-win32-x86.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "3.15.0-alpha.4",
|
|
||||||
"stable": false,
|
|
||||||
"release_url": "https://github.com/actions/python-versions/releases/tag/3.15.0-alpha.4-20979889385",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-darwin-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-darwin-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-darwin-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-darwin-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-linux-22.04-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-linux-22.04-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-linux-22.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-linux-22.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-linux-22.04-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-linux-22.04-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-linux-22.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-linux-22.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-linux-24.04-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-linux-24.04-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-linux-24.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-linux-24.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-linux-24.04-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-linux-24.04-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-linux-24.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-linux-24.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-win32-arm64-freethreaded.zip",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-win32-arm64-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-win32-x64-freethreaded.zip",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-win32-x64-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-win32-x64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-win32-x86-freethreaded.zip",
|
|
||||||
"arch": "x86-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-win32-x86-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.15.0-alpha.4-win32-x86.zip",
|
|
||||||
"arch": "x86",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.15.0-alpha.4-20979889385/python-3.15.0-alpha.4-win32-x86.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"version": "3.15.0-alpha.3",
|
"version": "3.15.0-alpha.3",
|
||||||
"stable": false,
|
"stable": false,
|
||||||
@@ -860,129 +368,6 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"version": "3.14.3",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/python-versions/releases/tag/3.14.3-21673711214",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-darwin-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-darwin-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-darwin-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-darwin-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-linux-22.04-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-linux-22.04-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-linux-22.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-linux-22.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-linux-22.04-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-linux-22.04-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-linux-22.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-linux-22.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-linux-24.04-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-linux-24.04-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-linux-24.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-linux-24.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-linux-24.04-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-linux-24.04-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-linux-24.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-linux-24.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-win32-arm64-freethreaded.zip",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-win32-arm64-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-win32-x64-freethreaded.zip",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-win32-x64-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-win32-x64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-win32-x86-freethreaded.zip",
|
|
||||||
"arch": "x86-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-win32-x86-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.14.3-win32-x86.zip",
|
|
||||||
"arch": "x86",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.14.3-21673711214/python-3.14.3-win32-x86.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"version": "3.14.2",
|
"version": "3.14.2",
|
||||||
"stable": true,
|
"stable": true,
|
||||||
@@ -3214,129 +2599,6 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"version": "3.13.12",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/python-versions/releases/tag/3.13.12-21673645133",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-darwin-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-darwin-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-darwin-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-darwin-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-linux-22.04-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-linux-22.04-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-linux-22.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-linux-22.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-linux-22.04-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-linux-22.04-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-linux-22.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-linux-22.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-linux-24.04-arm64-freethreaded.tar.gz",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-linux-24.04-arm64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-linux-24.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-linux-24.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-linux-24.04-x64-freethreaded.tar.gz",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-linux-24.04-x64-freethreaded.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-linux-24.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-linux-24.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-win32-arm64-freethreaded.zip",
|
|
||||||
"arch": "arm64-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-win32-arm64-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-win32-x64-freethreaded.zip",
|
|
||||||
"arch": "x64-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-win32-x64-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-win32-x64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-win32-x86-freethreaded.zip",
|
|
||||||
"arch": "x86-freethreaded",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-win32-x86-freethreaded.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.12-win32-x86.zip",
|
|
||||||
"arch": "x86",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.12-21673645133/python-3.13.12-win32-x86.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"version": "3.13.11",
|
"version": "3.13.11",
|
||||||
"stable": true,
|
"stable": true,
|
||||||
@@ -5616,41 +4878,6 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"version": "3.12.13",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/python-versions/releases/tag/3.12.13-22652080177",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "python-3.12.13-linux-22.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.13-22652080177/python-3.12.13-linux-22.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.12.13-linux-22.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.13-22652080177/python-3.12.13-linux-22.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.12.13-linux-24.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.13-22652080177/python-3.12.13-linux-24.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.12.13-linux-24.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.13-22652080177/python-3.12.13-linux-24.04-x64.tar.gz"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"version": "3.12.12",
|
"version": "3.12.12",
|
||||||
"stable": true,
|
"stable": true,
|
||||||
@@ -7149,41 +6376,6 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"version": "3.11.15",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/python-versions/releases/tag/3.11.15-22631496413",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "python-3.11.15-linux-22.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.11.15-22631496413/python-3.11.15-linux-22.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.11.15-linux-22.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.11.15-22631496413/python-3.11.15-linux-22.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.11.15-linux-24.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.11.15-22631496413/python-3.11.15-linux-24.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.11.15-linux-24.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.11.15-22631496413/python-3.11.15-linux-24.04-x64.tar.gz"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"version": "3.11.14",
|
"version": "3.11.14",
|
||||||
"stable": true,
|
"stable": true,
|
||||||
@@ -8695,47 +7887,6 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"version": "3.10.20",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/python-versions/releases/tag/3.10.20-22630057857",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "python-3.10.20-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.10.20-22630057857/python-3.10.20-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.10.20-linux-22.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.10.20-22630057857/python-3.10.20-linux-22.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.10.20-linux-22.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "22.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.10.20-22630057857/python-3.10.20-linux-22.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.10.20-linux-24.04-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.10.20-22630057857/python-3.10.20-linux-24.04-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.10.20-linux-24.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "24.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.10.20-22630057857/python-3.10.20-linux-24.04-x64.tar.gz"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"version": "3.10.19",
|
"version": "3.10.19",
|
||||||
"stable": true,
|
"stable": true,
|
||||||
|
|||||||
Reference in New Issue
Block a user