Compare commits

..

7 Commits

Author SHA1 Message Date
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
5 changed files with 260 additions and 65 deletions
+11 -62
View File
@@ -20,7 +20,7 @@ on:
PLATFORMS:
description: 'Platforms for execution in "os" or "os_arch" format (arch is "x64" by default)'
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-2022_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-11_arm64'
pull_request:
paths-ignore:
- 'versions-manifest.json'
@@ -44,7 +44,7 @@ jobs:
- name: Generate execution matrix
id: generate-matrix
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-2022_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-11_arm64' }}".Split(",").Trim()
[String[]]$buildModes = "${{ inputs.threading_build_modes || 'default' }}".Split(",").Trim()
$matrix = @()
@@ -56,11 +56,7 @@ jobs:
switch -wildcard ($os) {
"*ubuntu*" { $platform = $os.Replace("ubuntu","linux"); if ($arch -eq "arm64" ) { $os = "${os}-arm" } }
"*macos*" { $platform = 'darwin' }
"*windows*" { $platform = 'win32' }
}
if ($configuration -eq "windows-2022_arm64") {
$os = "setup-actions-windows-arm64-4-core"
"*windows*" { $platform = 'win32'; if ($arch -eq "arm64" ) { $os = "${os}-arm" } }
}
if ($buildMode -eq "freethreaded") {
@@ -89,32 +85,8 @@ jobs:
env:
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.13.7' }}-${{ matrix.platform }}-${{ matrix.arch }}
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
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
@@ -124,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
@@ -140,31 +112,8 @@ jobs:
env:
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.13.7' }}-${{ matrix.platform }}-${{ matrix.arch }}
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
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
@@ -177,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 }}
@@ -205,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 }}
@@ -246,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
@@ -272,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: |
@@ -296,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 }}
+246
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,