Compare commits

...

12 Commits

Author SHA1 Message Date
Haritha 33ec82dad4 Refactor OS configuration for Ubuntu arm64 runners in workflow
Remove specific OS configurations for Ubuntu arm64.
2026-02-17 09:52:02 -06:00
Haritha 8e10429829 Modify make command for ARM architecture profiling
Skip test_bz2 during PGO profiling for ARM on Ubuntu 22.04.
2026-02-13 11:21:12 -06:00
Haritha b79a1dda4e Fix architecture naming for Ubuntu configurations 2026-02-12 14:02:53 -06:00
Haritha 46132be3eb Test on local arm runners
Add conditional setup for Ubuntu ARM configurations.
2026-02-12 13:57:16 -06:00
github-actions[bot] e49da09661 Update versions-manifest (#375)
Co-authored-by: Service account <no-reply@microsoft.com>
2026-02-04 10:31:07 -06:00
dependabot[bot] 61c4d12583 Bump actions/download-artifact from 4 to 6 (#364)
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 6.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v4...v6)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-29 16:35:56 -06:00
dependabot[bot] 96ebf90b73 Bump actions/upload-artifact from 4 to 5 (#363)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-29 16:35:36 -06:00
dependabot[bot] d36fd1a300 Bump actions/github-script from 7 to 8 (#355)
Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 8.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](https://github.com/actions/github-script/compare/v7...v8)

---
updated-dependencies:
- dependency-name: actions/github-script
  dependency-version: '8'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-29 16:35:05 -06:00
dependabot[bot] 9b2be034cb Bump actions/setup-python from 5 to 6 (#354)
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-29 16:34:33 -06:00
dependabot[bot] 74d59deab1 Bump actions/checkout from 5 to 6 (#368)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-29 15:42:08 -06:00
github-actions[bot] 4d5c7515bd Update versions-manifest (#374)
Co-authored-by: Service account <no-reply@microsoft.com>
2026-01-15 10:42:36 -06:00
github-actions[bot] f499afd94b Update versions-manifest (#373)
Co-authored-by: Service account <no-reply@microsoft.com>
2026-01-14 10:51:11 -06:00
6 changed files with 511 additions and 13 deletions
+9 -9
View File
@@ -58,7 +58,7 @@ jobs:
"*macos*" { $platform = 'darwin' }
"*windows*" { $platform = 'win32'; if ($arch -eq "arm64" ) { $os = "${os}-arm" } }
}
if ($buildMode -eq "freethreaded") {
if ([semver]"${{ inputs.VERSION }}" -lt [semver]"3.13.0") {
continue;
@@ -86,7 +86,7 @@ jobs:
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.13.7' }}-${{ matrix.platform }}-${{ matrix.arch }}
steps:
- name: Check out repository code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
@@ -96,7 +96,7 @@ jobs:
-Platform ${{ matrix.platform }} -Architecture ${{ matrix.arch }}
- name: Publish artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ env.ARTIFACT_NAME }}
path: ${{ runner.temp }}/artifact
@@ -113,7 +113,7 @@ jobs:
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.13.7' }}-${{ matrix.platform }}-${{ matrix.arch }}
steps:
- name: Check out repository code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
@@ -126,7 +126,7 @@ jobs:
run: if [ -d /Library/Frameworks/Python.framework ]; then sudo rm -rf /Library/Frameworks/Python.framework; fi
- name: Download artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: ${{ env.ARTIFACT_NAME }}
path: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
@@ -154,7 +154,7 @@ jobs:
working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
- name: Setup Python ${{ env.VERSION }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ env.VERSION }}
architecture: ${{ matrix.arch }}
@@ -195,7 +195,7 @@ jobs:
needs: test_python
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v7
- name: Publish Release ${{ env.VERSION }}
id: create_release
@@ -221,7 +221,7 @@ jobs:
}
- name: Upload release assets
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
@@ -245,7 +245,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Trigger "Create Pull Request" workflow
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
@@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
+1 -1
View File
@@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Trigger python workflow
run: |
+1 -1
View File
@@ -18,7 +18,7 @@ jobs:
python: [3.9.13, 3.10.11, 3.11.8, 3.12.7, 3.13.0]
steps:
- name: setup-python ${{ matrix.python }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
+7 -1
View File
@@ -114,7 +114,13 @@ class NixPythonBuilder : PythonBuilder {
Write-Debug "make Python $($this.Version)-$($this.Architecture) $($this.Platform)"
$buildOutputLocation = New-Item -Path $this.WorkFolderLocation -Name "build_output.txt" -ItemType File
Execute-Command -Command "make 2>&1 | tee $buildOutputLocation" -ErrorAction Continue
### Skip test_bz2 during PGO profiling to work around libbz2 incompatibility
### on Ubuntu 22.04 ARM runners (testDecompressorChunksMaxsize failure).
if (($this.Architecture -match "arm64") -and ($this.Platform -match "22\.04") -and ($this.Version -ge [semver]"3.15.0-alpha.3")) {
Execute-Command -Command "make PROFILE_TASK='-m test --pgo --ignore test_bz2 -j0' 2>&1 | tee $buildOutputLocation" -ErrorAction Continue
} else {
Execute-Command -Command "make 2>&1 | tee $buildOutputLocation" -ErrorAction Continue
}
Execute-Command -Command "make install" -ErrorAction Continue
Write-Debug "Done; Make log location: $buildOutputLocation"
+492
View File
@@ -1,4 +1,250 @@
[
{
"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",
"stable": false,
@@ -368,6 +614,129 @@
}
]
},
{
"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",
"stable": true,
@@ -2599,6 +2968,129 @@
}
]
},
{
"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",
"stable": true,