mirror of
https://github.com/actions/python-versions.git
synced 2025-12-16 15:58:16 +00:00
Compare commits
39 Commits
test-win-a
...
testwin201
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ff809fd183 | ||
|
|
d61647554c | ||
|
|
34303ccc22 | ||
|
|
6de7c9a0ec | ||
|
|
465890b8c8 | ||
|
|
0526828581 | ||
|
|
9ad4c1fcaa | ||
|
|
3f1c6125df | ||
|
|
b1d12fe818 | ||
|
|
d464ee3cc6 | ||
|
|
61e93b288d | ||
|
|
8d965711ba | ||
|
|
b228cba84e | ||
|
|
fd9b186705 | ||
|
|
a15689f2ac | ||
|
|
be0e5a895c | ||
|
|
04c0db46b5 | ||
|
|
cb822fbaf1 | ||
|
|
1d262fc400 | ||
|
|
06ec0e912f | ||
|
|
30c053652b | ||
|
|
411060a14d | ||
|
|
45c77b2a3a | ||
|
|
3af71f81fb | ||
|
|
2031f98157 | ||
|
|
ac6f4c6a01 | ||
|
|
a185c39c53 | ||
|
|
9c2e25fa64 | ||
|
|
c87f998dfb | ||
|
|
a18ca9186b | ||
|
|
12f1ddaf19 | ||
|
|
22bd58f5ab | ||
|
|
91d36e5783 | ||
|
|
567e9060f4 | ||
|
|
10da5bd845 | ||
|
|
b6f9ad0531 | ||
|
|
0d0f3060e3 | ||
|
|
948f51aaf0 | ||
|
|
43b4fed22f |
26
.github/workflows/build-python-packages.yml
vendored
26
.github/workflows/build-python-packages.yml
vendored
@@ -41,7 +41,6 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
[String[]]$configurations = "${{ inputs.platforms || 'ubuntu-20.04,ubuntu-20.04_arm64,ubuntu-22.04,ubuntu-22.04_arm64,ubuntu-24.04,ubuntu-24.04_arm64,macos-11,macos-14_arm64,windows-2019_x64,windows-2019_x86' }}".Split(",").Trim()
|
[String[]]$configurations = "${{ inputs.platforms || 'ubuntu-20.04,ubuntu-20.04_arm64,ubuntu-22.04,ubuntu-22.04_arm64,ubuntu-24.04,ubuntu-24.04_arm64,macos-11,macos-14_arm64,windows-2019_x64,windows-2019_x86' }}".Split(",").Trim()
|
||||||
$matrix = @()
|
$matrix = @()
|
||||||
|
|
||||||
foreach ($configuration in $configurations) {
|
foreach ($configuration in $configurations) {
|
||||||
$parts = $configuration.Split("_")
|
$parts = $configuration.Split("_")
|
||||||
$os = $parts[0]
|
$os = $parts[0]
|
||||||
@@ -58,7 +57,6 @@ jobs:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
echo "matrix=$($matrix | ConvertTo-Json -Compress -AsArray)" >> $env:GITHUB_OUTPUT
|
echo "matrix=$($matrix | ConvertTo-Json -Compress -AsArray)" >> $env:GITHUB_OUTPUT
|
||||||
|
|
||||||
build_python:
|
build_python:
|
||||||
needs: generate_matrix
|
needs: generate_matrix
|
||||||
strategy:
|
strategy:
|
||||||
@@ -71,6 +69,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Install Chocolatey
|
- name: Install Chocolatey
|
||||||
|
if: runner.os == 'Windows' && runner.architecture == 'ARM64'
|
||||||
shell: powershell
|
shell: powershell
|
||||||
run: |
|
run: |
|
||||||
Set-ExecutionPolicy Bypass -Scope Process -Force
|
Set-ExecutionPolicy Bypass -Scope Process -Force
|
||||||
@@ -78,24 +77,28 @@ jobs:
|
|||||||
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
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
|
echo "C:\ProgramData\Chocolatey\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
- name: Install PowerShell
|
- name: Install PowerShell
|
||||||
|
if: runner.os == 'Windows' && runner.architecture == 'ARM64'
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: |
|
run: |
|
||||||
choco install powershell-core -y
|
choco install powershell-core -y
|
||||||
- name: Add PowerShell to PATH
|
- name: Add PowerShell to PATH
|
||||||
|
if: runner.os == 'Windows' && runner.architecture == 'ARM64'
|
||||||
shell: powershell
|
shell: powershell
|
||||||
run: |
|
run: |
|
||||||
echo "C:\Program Files\PowerShell\7" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
echo "C:\Program Files\PowerShell\7" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
|
|
||||||
- name: Install Git
|
- name: Install Git
|
||||||
|
if: runner.os == 'Windows' && runner.architecture == 'ARM64'
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: |
|
run: |
|
||||||
choco install git -y
|
choco install git -y
|
||||||
|
|
||||||
- name: Add Git to PATH
|
- name: Add Git to PATH
|
||||||
|
if: runner.os == 'Windows' && runner.architecture == 'ARM64'
|
||||||
shell: powershell
|
shell: powershell
|
||||||
run: |
|
run: |
|
||||||
echo "C:\Program Files\Git\cmd" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
echo "C:\Program Files\Git\cmd" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
- name: Check git version
|
- name: Check git version
|
||||||
|
if: runner.os == 'Windows' && runner.architecture == 'ARM64'
|
||||||
run: |
|
run: |
|
||||||
git --version
|
git --version
|
||||||
|
|
||||||
@@ -105,20 +108,19 @@ jobs:
|
|||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- name: Install 7-Zip
|
- name: Install 7-Zip
|
||||||
|
if: runner.os == 'Windows' && runner.architecture == 'ARM64'
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: |
|
run: |
|
||||||
choco install 7zip -y
|
choco install 7zip -y
|
||||||
|
|
||||||
- name: Add 7-Zip to PATH
|
- name: Add 7-Zip to PATH
|
||||||
|
if: runner.os == 'Windows' && runner.architecture == 'ARM64'
|
||||||
shell: powershell
|
shell: powershell
|
||||||
run: |
|
run: |
|
||||||
echo "C:\ProgramData\chocolatey\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
echo "C:\ProgramData\chocolatey\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
|
|
||||||
- name: Build Python ${{ env.VERSION }}
|
- name: Build Python ${{ env.VERSION }}
|
||||||
run: |
|
run: |
|
||||||
./builders/build-python.ps1 -Version $env:VERSION `
|
./builders/build-python.ps1 -Version $env:VERSION `
|
||||||
-Platform ${{ matrix.platform }} -Architecture ${{ matrix.arch }}
|
-Platform ${{ matrix.platform }} -Architecture ${{ matrix.arch }}
|
||||||
|
|
||||||
- name: Publish artifact
|
- name: Publish artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
@@ -138,6 +140,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Install Chocolatey
|
- name: Install Chocolatey
|
||||||
|
if: runner.os == 'Windows' && runner.architecture == 'ARM64'
|
||||||
shell: powershell
|
shell: powershell
|
||||||
run: |
|
run: |
|
||||||
Set-ExecutionPolicy Bypass -Scope Process -Force
|
Set-ExecutionPolicy Bypass -Scope Process -Force
|
||||||
@@ -145,24 +148,28 @@ jobs:
|
|||||||
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
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
|
echo "C:\ProgramData\Chocolatey\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
- name: Install PowerShell
|
- name: Install PowerShell
|
||||||
|
if: runner.os == 'Windows' && runner.architecture == 'ARM64'
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: |
|
run: |
|
||||||
choco install powershell-core -y
|
choco install powershell-core -y
|
||||||
- name: Add PowerShell to PATH
|
- name: Add PowerShell to PATH
|
||||||
|
if: runner.os == 'Windows' && runner.architecture == 'ARM64'
|
||||||
shell: powershell
|
shell: powershell
|
||||||
run: |
|
run: |
|
||||||
echo "C:\Program Files\PowerShell\7" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
echo "C:\Program Files\PowerShell\7" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
|
|
||||||
- name: Install Git
|
- name: Install Git
|
||||||
|
if: runner.os == 'Windows' && runner.architecture == 'ARM64'
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: |
|
run: |
|
||||||
choco install git -y
|
choco install git -y
|
||||||
|
|
||||||
- name: Add Git to PATH
|
- name: Add Git to PATH
|
||||||
|
if: runner.os == 'Windows' && runner.architecture == 'ARM64'
|
||||||
shell: powershell
|
shell: powershell
|
||||||
run: |
|
run: |
|
||||||
echo "C:\Program Files\Git\cmd" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
echo "C:\Program Files\Git\cmd" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
- name: Check git version
|
- name: Check git version
|
||||||
|
if: runner.os == 'Windows' && runner.architecture == 'ARM64'
|
||||||
run: |
|
run: |
|
||||||
git --version
|
git --version
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
@@ -185,10 +192,10 @@ jobs:
|
|||||||
path: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
|
path: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
|
||||||
|
|
||||||
- name: Install 7-Zip
|
- name: Install 7-Zip
|
||||||
|
if: runner.os == 'Windows' && runner.architecture == 'ARM64'
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: |
|
run: |
|
||||||
choco install 7zip -y
|
choco install 7zip -y
|
||||||
|
|
||||||
- name: Add 7-Zip to PATH
|
- name: Add 7-Zip to PATH
|
||||||
shell: powershell
|
shell: powershell
|
||||||
run: |
|
run: |
|
||||||
@@ -231,7 +238,6 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
$pythonLocation = which python
|
$pythonLocation = which python
|
||||||
if ('${{ matrix.platform }}' -eq 'darwin') { otool -L $pythonLocation } else { ldd $pythonLocation }
|
if ('${{ matrix.platform }}' -eq 'darwin') { otool -L $pythonLocation } else { ldd $pythonLocation }
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
Install-Module Pester -Force -Scope CurrentUser -SkipPublisherCheck
|
Install-Module Pester -Force -Scope CurrentUser -SkipPublisherCheck
|
||||||
@@ -266,7 +272,6 @@ jobs:
|
|||||||
release_name: ${{ env.VERSION }}
|
release_name: ${{ env.VERSION }}
|
||||||
body: |
|
body: |
|
||||||
Python ${{ env.VERSION }}
|
Python ${{ env.VERSION }}
|
||||||
|
|
||||||
- name: Generate hash for packages
|
- name: Generate hash for packages
|
||||||
run: |
|
run: |
|
||||||
$childItems = Get-Childitem -Path '.'
|
$childItems = Get-Childitem -Path '.'
|
||||||
@@ -314,4 +319,3 @@ jobs:
|
|||||||
workflow_id: 'create-pr.yml',
|
workflow_id: 'create-pr.yml',
|
||||||
ref: 'main'
|
ref: 'main'
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -97,7 +97,6 @@ class NixPythonBuilder : PythonBuilder {
|
|||||||
|
|
||||||
$variablesToReplace = @{
|
$variablesToReplace = @{
|
||||||
"{{__VERSION_FULL__}}" = $this.Version;
|
"{{__VERSION_FULL__}}" = $this.Version;
|
||||||
"{{__ARCH__}}" = $this.Architecture;
|
|
||||||
}
|
}
|
||||||
$variablesToReplace.keys | ForEach-Object { $installationTemplateContent = $installationTemplateContent.Replace($_, $variablesToReplace[$_]) }
|
$variablesToReplace.keys | ForEach-Object { $installationTemplateContent = $installationTemplateContent.Replace($_, $variablesToReplace[$_]) }
|
||||||
|
|
||||||
|
|||||||
@@ -64,6 +64,7 @@ class WinPythonBuilder : PythonBuilder {
|
|||||||
$ArchitectureExtension = "-arm64"
|
$ArchitectureExtension = "-arm64"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return $ArchitectureExtension
|
return $ArchitectureExtension
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
PYTHON_FULL_VERSION="{{__VERSION_FULL__}}"
|
PYTHON_FULL_VERSION="{{__VERSION_FULL__}}"
|
||||||
ARCH="{{__ARCH__}}"
|
|
||||||
MAJOR_VERSION=$(echo $PYTHON_FULL_VERSION | cut -d '.' -f 1)
|
MAJOR_VERSION=$(echo $PYTHON_FULL_VERSION | cut -d '.' -f 1)
|
||||||
MINOR_VERSION=$(echo $PYTHON_FULL_VERSION | cut -d '.' -f 2)
|
MINOR_VERSION=$(echo $PYTHON_FULL_VERSION | cut -d '.' -f 2)
|
||||||
|
|
||||||
@@ -18,7 +17,7 @@ fi
|
|||||||
|
|
||||||
PYTHON_TOOLCACHE_PATH=$TOOLCACHE_ROOT/Python
|
PYTHON_TOOLCACHE_PATH=$TOOLCACHE_ROOT/Python
|
||||||
PYTHON_TOOLCACHE_VERSION_PATH=$PYTHON_TOOLCACHE_PATH/$PYTHON_FULL_VERSION
|
PYTHON_TOOLCACHE_VERSION_PATH=$PYTHON_TOOLCACHE_PATH/$PYTHON_FULL_VERSION
|
||||||
PYTHON_TOOLCACHE_VERSION_ARCH_PATH=$PYTHON_TOOLCACHE_VERSION_PATH/$ARCH
|
PYTHON_TOOLCACHE_VERSION_ARCH_PATH=$PYTHON_TOOLCACHE_VERSION_PATH/x64
|
||||||
|
|
||||||
echo "Check if Python hostedtoolcache folder exist..."
|
echo "Check if Python hostedtoolcache folder exist..."
|
||||||
if [ ! -d $PYTHON_TOOLCACHE_PATH ]; then
|
if [ ! -d $PYTHON_TOOLCACHE_PATH ]; then
|
||||||
@@ -55,4 +54,4 @@ export PIP_ROOT_USER_ACTION=ignore
|
|||||||
./python -m pip install --upgrade --force-reinstall pip --disable-pip-version-check --no-warn-script-location
|
./python -m pip install --upgrade --force-reinstall pip --disable-pip-version-check --no-warn-script-location
|
||||||
|
|
||||||
echo "Create complete file"
|
echo "Create complete file"
|
||||||
touch $PYTHON_TOOLCACHE_VERSION_PATH/$ARCH.complete
|
touch $PYTHON_TOOLCACHE_VERSION_PATH/x64.complete
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ if os_type == 'Darwin': expected_ld_library_extension = 'dylib'
|
|||||||
if pkg_installer:
|
if pkg_installer:
|
||||||
expected_lib_dir_path = f'/Library/Frameworks/Python.framework/Versions/{version_major}.{version_minor}/lib'
|
expected_lib_dir_path = f'/Library/Frameworks/Python.framework/Versions/{version_major}.{version_minor}/lib'
|
||||||
else:
|
else:
|
||||||
expected_lib_dir_path = f'{os.getenv("AGENT_TOOLSDIRECTORY")}/Python/{version}/{architecture}/lib'
|
expected_lib_dir_path = f'{os.getenv("AGENT_TOOLSDIRECTORY")}/Python/{version}/x64/lib'
|
||||||
|
|
||||||
# Check modules
|
# Check modules
|
||||||
### Validate libraries path
|
### Validate libraries path
|
||||||
|
|||||||
@@ -1,56 +1,4 @@
|
|||||||
[
|
[
|
||||||
{
|
|
||||||
"version": "3.13.0-beta.2",
|
|
||||||
"stable": false,
|
|
||||||
"release_url": "https://github.com/actions/python-versions/releases/tag/3.13.0-beta.2-9470028175",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.0-beta.2-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.0-beta.2-9470028175/python-3.13.0-beta.2-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.0-beta.2-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.0-beta.2-9470028175/python-3.13.0-beta.2-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.0-beta.2-linux-20.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "20.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.0-beta.2-9470028175/python-3.13.0-beta.2-linux-20.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.0-beta.2-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.0-beta.2-9470028175/python-3.13.0-beta.2-linux-22.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.0-beta.2-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.0-beta.2-9470028175/python-3.13.0-beta.2-linux-24.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.0-beta.2-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.0-beta.2-9470028175/python-3.13.0-beta.2-win32-x64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.13.0-beta.2-win32-x86.zip",
|
|
||||||
"arch": "x86",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.0-beta.2-9470028175/python-3.13.0-beta.2-win32-x86.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"version": "3.13.0-beta.1",
|
"version": "3.13.0-beta.1",
|
||||||
"stable": false,
|
"stable": false,
|
||||||
@@ -373,58 +321,6 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"version": "3.12.4",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/python-versions/releases/tag/3.12.4-9469551593",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "python-3.12.4-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.4-9469551593/python-3.12.4-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.12.4-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.4-9469551593/python-3.12.4-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.12.4-linux-20.04-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "20.04",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.4-9469551593/python-3.12.4-linux-20.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.12.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.12.4-9469551593/python-3.12.4-linux-22.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.12.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.12.4-9469551593/python-3.12.4-linux-24.04-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.12.4-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.4-9469551593/python-3.12.4-win32-x64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "python-3.12.4-win32-x86.zip",
|
|
||||||
"arch": "x86",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.4-9469551593/python-3.12.4-win32-x86.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"version": "3.12.3",
|
"version": "3.12.3",
|
||||||
"stable": true,
|
"stable": true,
|
||||||
|
|||||||
Reference in New Issue
Block a user