mirror of
https://github.com/actions/python-versions.git
synced 2025-12-15 15:32:11 +00:00
Compare commits
19 Commits
3.13.3-143
...
test-win-1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fd877686de | ||
|
|
12d1aafbbe | ||
|
|
47c0f8f504 | ||
|
|
932e85b2f9 | ||
|
|
24026245a8 | ||
|
|
81bbab5835 | ||
|
|
e3b147457c | ||
|
|
26223fb20b | ||
|
|
7406e1d9f7 | ||
|
|
94c566800e | ||
|
|
7c0308cd7d | ||
|
|
bcf6ecc82e | ||
|
|
2eea8c8fed | ||
|
|
56544d4840 | ||
|
|
96e291c21e | ||
|
|
d5e8ad6406 | ||
|
|
5c01d17435 | ||
|
|
bc5b4d5490 | ||
|
|
a12e3a2eaa |
120
.github/workflows/build-python-packages.yml
vendored
120
.github/workflows/build-python-packages.yml
vendored
@@ -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-20.04,ubuntu-22.04,ubuntu-22.04_arm64,ubuntu-24.04,ubuntu-24.04_arm64,macos-13_x64,macos-14_arm64,windows-2019_x64,windows-2019_x86,windows-2019_arm64'
|
default: 'ubuntu-22.04,ubuntu-22.04_arm64,ubuntu-24.04,ubuntu-24.04_arm64,macos-13_x64,macos-14_arm64,windows-2022_x64,windows-2022_x86,windows-11_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-20.04,ubuntu-22.04,ubuntu-22.04_arm64,ubuntu-24.04,ubuntu-24.04_arm64,macos-13,macos-14_arm64,windows-2019_x64,windows-2019_x86,windows-2019_arm64' }}".Split(",").Trim()
|
[String[]]$configurations = "${{ inputs.platforms || 'ubuntu-22.04,ubuntu-22.04_arm64,ubuntu-24.04,ubuntu-24.04_arm64,macos-13,macos-14_arm64,windows-2022_x64,windows-2022_x86,windows-11_arm64' }}".Split(",").Trim()
|
||||||
[String[]]$buildModes = "${{ inputs.threading_build_modes || 'default' }}".Split(",").Trim()
|
[String[]]$buildModes = "${{ inputs.threading_build_modes || 'default' }}".Split(",").Trim()
|
||||||
$matrix = @()
|
$matrix = @()
|
||||||
|
|
||||||
@@ -54,19 +54,9 @@ jobs:
|
|||||||
$os = $parts[0]
|
$os = $parts[0]
|
||||||
$arch = if ($parts[1]) {$parts[1]} else {"x64"}
|
$arch = if ($parts[1]) {$parts[1]} else {"x64"}
|
||||||
switch -wildcard ($os) {
|
switch -wildcard ($os) {
|
||||||
"*ubuntu*" { $platform = $os.Replace("ubuntu","linux")}
|
"*ubuntu*" { $platform = $os.Replace("ubuntu","linux"); if ($arch -eq "arm64" ) { $os = "${os}-arm" } }
|
||||||
"*macos*" { $platform = 'darwin' }
|
"*macos*" { $platform = 'darwin' }
|
||||||
"*windows*" { $platform = 'win32' }
|
"*windows*" { $platform = 'win32'; if ($arch -eq "arm64" ) { $os = "${os}-arm" } }
|
||||||
}
|
|
||||||
|
|
||||||
if ($configuration -eq "ubuntu-22.04_arm64") {
|
|
||||||
$os = "setup-actions-ubuntu-arm64-2-core"
|
|
||||||
}
|
|
||||||
elseif ($configuration -eq "ubuntu-24.04_arm64") {
|
|
||||||
$os = "setup-actions-ubuntu24-arm64-2-core"
|
|
||||||
}
|
|
||||||
elseif ($configuration -eq "windows-2019_arm64") {
|
|
||||||
$os = "setup-actions-windows-arm64-4-core"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($buildMode -eq "freethreaded") {
|
if ($buildMode -eq "freethreaded") {
|
||||||
@@ -95,30 +85,6 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.12.3' }}-${{ matrix.platform }}-${{ matrix.arch }}
|
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.12.3' }}-${{ 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@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
@@ -150,29 +116,6 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.12.3' }}-${{ matrix.platform }}-${{ matrix.arch }}
|
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.12.3' }}-${{ 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@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
@@ -203,15 +146,37 @@ jobs:
|
|||||||
}
|
}
|
||||||
working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
|
working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
|
||||||
|
|
||||||
|
- name: Check OS Architecture and Python Binary
|
||||||
|
shell: pwsh
|
||||||
|
run: |
|
||||||
|
Write-Host "OS Architecture:"
|
||||||
|
[System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture
|
||||||
|
|
||||||
|
$pythonPath = "C:\\hostedtoolcache\\windows\\Python\\${{ env.VERSION }}\\${{ matrix.arch }}\\python.exe"
|
||||||
|
Write-Host "Checking python.exe path: $pythonPath"
|
||||||
|
if (Test-Path $pythonPath) {
|
||||||
|
$file = Get-Item $pythonPath
|
||||||
|
Write-Host "python.exe exists. Size: $($file.Length) bytes"
|
||||||
|
} else {
|
||||||
|
Write-Host "python.exe is missing at $pythonPath"
|
||||||
|
}
|
||||||
|
|
||||||
|
Write-Host "Listing Toolcache directory:"
|
||||||
|
Get-ChildItem "C:\\hostedtoolcache\\windows\\Python\\${{ env.VERSION }}\\${{ matrix.arch }}" -Recurse -Force
|
||||||
|
|
||||||
|
Write-Host "Listing extracted artifact contents:"
|
||||||
|
Get-ChildItem -Recurse "${{ runner.temp }}\\${{ env.ARTIFACT_NAME }}"
|
||||||
|
|
||||||
|
|
||||||
- name: Apply build artifact to the local machine
|
- name: Apply build artifact to the local machine
|
||||||
run: |
|
run: |
|
||||||
$PSNativeCommandUseErrorActionPreference = $true
|
$PSNativeCommandUseErrorActionPreference = $true
|
||||||
if ('${{ matrix.platform }}' -eq 'win32') {
|
if ('${{ matrix.platform }}' -eq 'win32') {
|
||||||
powershell ./setup.ps1
|
powershell ./setup.ps1
|
||||||
} else {
|
} else {
|
||||||
sh ./setup.sh
|
sh ./setup.sh
|
||||||
cp ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}/build_output.txt ${{ runner.temp }}
|
cp ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}/build_output.txt ${{ runner.temp }}
|
||||||
}
|
}
|
||||||
working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
|
working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
|
||||||
|
|
||||||
- name: Setup Python ${{ env.VERSION }}
|
- name: Setup Python ${{ env.VERSION }}
|
||||||
@@ -236,20 +201,21 @@ jobs:
|
|||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
Install-Module Pester -Force -Scope CurrentUser -SkipPublisherCheck
|
Install-Module Pester -Force -Scope CurrentUser -SkipPublisherCheck
|
||||||
Import-Module Pester
|
Import-Module Pester
|
||||||
$pesterContainer = New-PesterContainer -Path './python-tests.ps1' -Data @{
|
$pesterContainer = New-PesterContainer -Path './python-tests.ps1' -Data @{
|
||||||
Version="${{ env.VERSION }}";
|
Version="${{ env.VERSION }}";
|
||||||
Platform="${{ matrix.platform }}";
|
Platform="${{ matrix.platform }}";
|
||||||
Architecture="${{ matrix.arch }}";
|
Architecture="${{ matrix.arch }}";
|
||||||
}
|
}
|
||||||
$Result = Invoke-Pester -Container $pesterContainer -PassThru
|
$Result = Invoke-Pester -Container $pesterContainer -PassThru
|
||||||
if ($Result.FailedCount -gt 0) {
|
if ($Result.FailedCount -gt 0) {
|
||||||
$host.SetShouldExit($Result.FailedCount)
|
$host.SetShouldExit($Result.FailedCount)
|
||||||
exit $Result.FailedCount
|
exit $Result.FailedCount
|
||||||
}
|
}
|
||||||
working-directory: ${{ github.workspace }}/tests
|
working-directory: ${{ github.workspace }}/tests
|
||||||
|
|
||||||
|
|
||||||
publish_release:
|
publish_release:
|
||||||
name: Publish release
|
name: Publish release
|
||||||
if: github.event_name == 'workflow_dispatch' && inputs.PUBLISH_RELEASES
|
if: github.event_name == 'workflow_dispatch' && inputs.PUBLISH_RELEASES
|
||||||
|
|||||||
2
.github/workflows/releases-validation.yml
vendored
2
.github/workflows/releases-validation.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04, macos-13, ubuntu-latest]
|
os: [macos-latest, windows-latest, ubuntu-22.04, ubuntu-latest, macos-13]
|
||||||
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 }}
|
||||||
|
|||||||
2
.github/workflows/test-python-version.yml
vendored
2
.github/workflows/test-python-version.yml
vendored
@@ -17,7 +17,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04, ubuntu-latest, macos-13]
|
os: [macos-latest, windows-latest, ubuntu-22.04, ubuntu-latest, macos-13]
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Python ${{ github.event.inputs.version }}
|
- name: Setup Python ${{ github.event.inputs.version }}
|
||||||
uses: actions/setup-python@main
|
uses: actions/setup-python@main
|
||||||
|
|||||||
@@ -31,14 +31,6 @@ class macOSPythonBuilder : NixPythonBuilder {
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Prepare system environment by installing dependencies and required packages.
|
Prepare system environment by installing dependencies and required packages.
|
||||||
#>
|
#>
|
||||||
|
|
||||||
if ($this.Version -eq "3.7.17") {
|
|
||||||
# We have preinstalled ncurses and readLine on the hoster runners. But we need to install bzip2 for
|
|
||||||
# setting up an environemnt
|
|
||||||
# If we get any issues realted to ncurses or readline we can try to run this command
|
|
||||||
# brew install ncurses readline
|
|
||||||
Execute-Command -Command "brew install bzip2"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[void] Configure() {
|
[void] Configure() {
|
||||||
@@ -58,46 +50,20 @@ class macOSPythonBuilder : NixPythonBuilder {
|
|||||||
### will never be used itself by a Github Actions runner but using a universal2 Python is the only way to build
|
### will never be used itself by a Github Actions runner but using a universal2 Python is the only way to build
|
||||||
### universal2 C extensions and wheels. This is supported by Python >= 3.10 and was backported to Python >=
|
### universal2 C extensions and wheels. This is supported by Python >= 3.10 and was backported to Python >=
|
||||||
### 3.9.1 and >= 3.8.10.
|
### 3.9.1 and >= 3.8.10.
|
||||||
### Disabled, discussion: https://github.com/actions/python-versions/pull/114
|
|
||||||
# if ($this.Version -ge "3.8.10" -and $this.Version -ne "3.8.13" -and $this.Version -ne "3.9.0" ) {
|
|
||||||
# $configureString += " --enable-universalsdk --with-universal-archs=universal2"
|
|
||||||
# }
|
|
||||||
|
|
||||||
### OS X 10.11, Apple no longer provides header files for the deprecated system version of OpenSSL.
|
### OS X 10.11, Apple no longer provides header files for the deprecated system version of OpenSSL.
|
||||||
### Solution is to install these libraries from a third-party package manager,
|
### Solution is to install these libraries from a third-party package manager,
|
||||||
### and then add the appropriate paths for the header and library files to configure command.
|
### and then add the appropriate paths for the header and library files to configure command.
|
||||||
### Link to documentation (https://cpython-devguide.readthedocs.io/setup/#build-dependencies)
|
### Link to documentation (https://cpython-devguide.readthedocs.io/setup/#build-dependencies)
|
||||||
if ($this.Version -lt "3.7.0") {
|
$configureString += " --with-openssl=/usr/local/opt/openssl@3"
|
||||||
$env:LDFLAGS = "-L/usr/local/opt/openssl@3/lib -L/usr/local/opt/zlib/lib"
|
$configureString += " --with-tcltk-includes='-I /usr/local/opt/tcl-tk/include/tcl-tk' --with-tcltk-libs='-L/usr/local/opt/tcl-tk/lib -ltcl8.6 -ltk8.6'"
|
||||||
$env:CFLAGS = "-I/usr/local/opt/openssl@3/include -I/usr/local/opt/zlib/include"
|
|
||||||
} else {
|
|
||||||
$configureString += " --with-openssl=/usr/local/opt/openssl@3"
|
|
||||||
|
|
||||||
# For Python 3.7.2 and 3.7.3 we need to provide PATH for zlib to pack it properly. Otherwise the build will fail
|
### Compile with support of loadable sqlite extensions.
|
||||||
# with the error: zipimport.ZipImportError: can't decompress data; zlib not available
|
|
||||||
if ($this.Version -eq "3.7.2" -or $this.Version -eq "3.7.3" -or $this.Version -eq "3.7.17") {
|
|
||||||
$env:LDFLAGS = "-L/usr/local/opt/zlib/lib"
|
|
||||||
$env:CFLAGS = "-I/usr/local/opt/zlib/include"
|
|
||||||
}
|
|
||||||
|
|
||||||
# if ($this.Version -gt "3.7.12") {
|
|
||||||
$configureString += " --with-tcltk-includes='-I /usr/local/opt/tcl-tk/include/tcl-tk' --with-tcltk-libs='-L/usr/local/opt/tcl-tk/lib -ltcl8.6 -ltk8.6'"
|
|
||||||
# }
|
|
||||||
|
|
||||||
if ($this.Version -eq "3.7.17") {
|
|
||||||
$env:LDFLAGS += " -L$(brew --prefix bzip2)/lib -L$(brew --prefix readline)/lib -L$(brew --prefix ncurses)/lib"
|
|
||||||
$env:CFLAGS += " -I$(brew --prefix bzip2)/include -I$(brew --prefix readline)/include -I$(brew --prefix ncurses)/include"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
### Compile with support of loadable sqlite extensions. Unavailable for Python 2.*
|
|
||||||
### Link to documentation (https://docs.python.org/3/library/sqlite3.html#sqlite3.Connection.enable_load_extension)
|
### Link to documentation (https://docs.python.org/3/library/sqlite3.html#sqlite3.Connection.enable_load_extension)
|
||||||
if ($this.Version -ge "3.2.0") {
|
$configureString += " --enable-loadable-sqlite-extensions"
|
||||||
$configureString += " --enable-loadable-sqlite-extensions"
|
$env:LDFLAGS += " -L$(brew --prefix sqlite3)/lib"
|
||||||
$env:LDFLAGS += " -L$(brew --prefix sqlite3)/lib"
|
$env:CFLAGS += " -I$(brew --prefix sqlite3)/include"
|
||||||
$env:CFLAGS += " -I$(brew --prefix sqlite3)/include"
|
$env:CPPFLAGS += "-I$(brew --prefix sqlite3)/include"
|
||||||
$env:CPPFLAGS += "-I$(brew --prefix sqlite3)/include"
|
|
||||||
}
|
|
||||||
|
|
||||||
Write-Host "The passed configure options are: "
|
Write-Host "The passed configure options are: "
|
||||||
Write-Host $configureString
|
Write-Host $configureString
|
||||||
|
|||||||
@@ -61,8 +61,7 @@ class NixPythonBuilder : PythonBuilder {
|
|||||||
Return name of Python binary.
|
Return name of Python binary.
|
||||||
#>
|
#>
|
||||||
|
|
||||||
if ($this.Version.Major -eq 2) { $pythonBinary = "python" } else { $pythonBinary = "python3" }
|
return "python3"
|
||||||
return $pythonBinary
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[string] Download() {
|
[string] Download() {
|
||||||
|
|||||||
@@ -61,8 +61,8 @@ class UbuntuPythonBuilder : NixPythonBuilder {
|
|||||||
Prepare system environment by installing dependencies and required packages.
|
Prepare system environment by installing dependencies and required packages.
|
||||||
#>
|
#>
|
||||||
|
|
||||||
if ($this.Version -lt "3.5.3") {
|
if ($this.Version -lt "3.9.0") {
|
||||||
Write-Host "Python versions lower than 3.5.3 are not supported"
|
Write-Host "Python versions lower than 3.9.0 are not supported"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -42,9 +42,7 @@ class WinPythonBuilder : PythonBuilder {
|
|||||||
Return extension for required version of Python executable.
|
Return extension for required version of Python executable.
|
||||||
#>
|
#>
|
||||||
|
|
||||||
$extension = if ($this.Version -lt "3.5" -and $this.Version -ge "2.5") { ".msi" } else { ".exe" }
|
return ".exe"
|
||||||
|
|
||||||
return $extension
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[string] GetArchitectureExtension() {
|
[string] GetArchitectureExtension() {
|
||||||
@@ -55,11 +53,7 @@ class WinPythonBuilder : PythonBuilder {
|
|||||||
|
|
||||||
$ArchitectureExtension = ""
|
$ArchitectureExtension = ""
|
||||||
if ($this.GetHardwareArchitecture() -eq "x64") {
|
if ($this.GetHardwareArchitecture() -eq "x64") {
|
||||||
if ($this.Version -ge "3.5") {
|
$ArchitectureExtension = "-amd64"
|
||||||
$ArchitectureExtension = "-amd64"
|
|
||||||
} else {
|
|
||||||
$ArchitectureExtension = ".amd64"
|
|
||||||
}
|
|
||||||
} elseif ($this.GetHardwareArchitecture() -eq "arm64") {
|
} elseif ($this.GetHardwareArchitecture() -eq "arm64") {
|
||||||
$ArchitectureExtension = "-arm64"
|
$ArchitectureExtension = "-arm64"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,12 +11,7 @@ function Get-RegistryVersionFilter {
|
|||||||
)
|
)
|
||||||
|
|
||||||
$archFilter = if ($Architecture -eq 'x86') { "32-bit" } else { "64-bit" }
|
$archFilter = if ($Architecture -eq 'x86') { "32-bit" } else { "64-bit" }
|
||||||
### Python 2.7 x86 have no architecture postfix
|
"Python $MajorVersion.$MinorVersion.*($archFilter)"
|
||||||
if (($Architecture -eq "x86") -and ($MajorVersion -eq 2)) {
|
|
||||||
"Python $MajorVersion.$MinorVersion.\d+$"
|
|
||||||
} else {
|
|
||||||
"Python $MajorVersion.$MinorVersion.*($archFilter)"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function Remove-RegistryEntries {
|
function Remove-RegistryEntries {
|
||||||
@@ -131,11 +126,6 @@ if ($LASTEXITCODE -ne 0) {
|
|||||||
Throw "Error happened during Python installation"
|
Throw "Error happened during Python installation"
|
||||||
}
|
}
|
||||||
|
|
||||||
# print out all files in $PythonArchPath
|
|
||||||
Write-Host "Files in $PythonArchPath"
|
|
||||||
$files = Get-ChildItem -Path $PythonArchPath -File -Recurse
|
|
||||||
Write-Output $files
|
|
||||||
|
|
||||||
if ($IsFreeThreaded) {
|
if ($IsFreeThreaded) {
|
||||||
# Delete python.exe and create a symlink to free-threaded exe
|
# Delete python.exe and create a symlink to free-threaded exe
|
||||||
Remove-Item -Path "$PythonArchPath\python.exe" -Force
|
Remove-Item -Path "$PythonArchPath\python.exe" -Force
|
||||||
@@ -143,9 +133,7 @@ if ($IsFreeThreaded) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Write-Host "Create `python3` symlink"
|
Write-Host "Create `python3` symlink"
|
||||||
if ($MajorVersion -ne "2") {
|
New-Item -Path "$PythonArchPath\python3.exe" -ItemType SymbolicLink -Value "$PythonArchPath\python.exe"
|
||||||
New-Item -Path "$PythonArchPath\python3.exe" -ItemType SymbolicLink -Value "$PythonArchPath\python.exe"
|
|
||||||
}
|
|
||||||
|
|
||||||
Write-Host "Install and upgrade Pip"
|
Write-Host "Install and upgrade Pip"
|
||||||
$Env:PIP_ROOT_USER_ACTION = "ignore"
|
$Env:PIP_ROOT_USER_ACTION = "ignore"
|
||||||
|
|||||||
@@ -4,19 +4,33 @@ $ConfigurationFile = Join-Path $PSScriptRoot "../config/python-manifest-config.j
|
|||||||
$Configuration = Read-ConfigurationFile -Filepath $ConfigurationFile
|
$Configuration = Read-ConfigurationFile -Filepath $ConfigurationFile
|
||||||
|
|
||||||
$stableTestCases = @(
|
$stableTestCases = @(
|
||||||
@{ ReleaseName = "python-3.8.3-darwin-x64.tar.gz"; ExpectedResult = @{ platform = "darwin"; platform_version = $null; arch = "x64"} },
|
|
||||||
@{ ReleaseName = "python-3.8.3-linux-20.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "20.04"; arch = "x64"} },
|
@{ ReleaseName = "python-3.13.0-darwin-x64.tar.gz"; ExpectedResult = @{ platform = "darwin"; platform_version = $null; arch = "x64"} },
|
||||||
@{ ReleaseName = "python-3.8.3-linux-22.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "22.04"; arch = "x64"} },
|
@{ ReleaseName = "python-3.13.0-linux-20.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "20.04"; arch = "x64"} },
|
||||||
@{ ReleaseName = "python-3.8.3-win32-x64.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x64"} },
|
@{ ReleaseName = "python-3.13.0-linux-22.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "22.04"; arch = "x64"} },
|
||||||
@{ ReleaseName = "python-3.8.3-win32-x86.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x86"} }
|
@{ ReleaseName = "python-3.13.0-win32-x64.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x64"} },
|
||||||
|
@{ ReleaseName = "python-3.13.0-win32-x86.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x86"} },
|
||||||
|
@{ ReleaseName = "python-3.13.0-darwin-x64-freethreaded.tar.gz"; ExpectedResult = @{ platform = "darwin"; platform_version = $null; arch = "x64-freethreaded"} },
|
||||||
|
@{ ReleaseName = "python-3.13.0-linux-20.04-x64-freethreaded.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "20.04"; arch = "x64-freethreaded"} },
|
||||||
|
@{ ReleaseName = "python-3.13.0-linux-22.04-x64-freethreaded.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "22.04"; arch = "x64-freethreaded"} },
|
||||||
|
@{ ReleaseName = "python-3.13.0-win32-x64-freethreaded.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x64-freethreaded"} },
|
||||||
|
@{ ReleaseName = "python-3.13.0-win32-x86-freethreaded.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x86-freethreaded"} }
|
||||||
|
|
||||||
) | ForEach-Object { $_.Configuration = $Configuration; $_ }
|
) | ForEach-Object { $_.Configuration = $Configuration; $_ }
|
||||||
|
|
||||||
$unstableTestCases = @(
|
$unstableTestCases = @(
|
||||||
@{ ReleaseName = "python-3.9.0-alpha.2-darwin-x64.tar.gz"; ExpectedResult = @{ platform = "darwin"; platform_version = $null; arch = "x64"} },
|
|
||||||
@{ ReleaseName = "python-3.9.0-beta.2-linux-20.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "20.04"; arch = "x64"} },
|
@{ ReleaseName = "python-3.14.0-alpha.5-darwin-x64.tar.gz"; ExpectedResult = @{ platform = "darwin"; platform_version = $null; arch = "x64"} },
|
||||||
@{ ReleaseName = "python-3.9.0-rc.4-linux-22.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "22.04"; arch = "x64"} },
|
@{ ReleaseName = "python-3.14.0-alpha.5-linux-20.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "20.04"; arch = "x64"} },
|
||||||
@{ ReleaseName = "python-3.9.0-beta.2-win32-x64.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x64"} },
|
@{ ReleaseName = "python-3.14.0-alpha.5-linux-22.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "22.04"; arch = "x64"} },
|
||||||
@{ ReleaseName = "python-3.9.0-beta.2-win32-x86.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x86"} }
|
@{ ReleaseName = "python-3.14.0-alpha.5-win32-x64.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x64"} },
|
||||||
|
@{ ReleaseName = "python-3.14.0-alpha.5-win32-x86.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x86"} },
|
||||||
|
@{ ReleaseName = "python-3.14.0-alpha.5-darwin-x64-freethreaded.tar.gz"; ExpectedResult = @{ platform = "darwin"; platform_version = $null; arch = "x64-freethreaded"} },
|
||||||
|
@{ ReleaseName = "python-3.14.0-alpha.5-linux-20.04-x64-freethreaded.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "20.04"; arch = "x64-freethreaded"} },
|
||||||
|
@{ ReleaseName = "python-3.14.0-alpha.5-linux-22.04-x64-freethreaded.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "22.04"; arch = "x64-freethreaded"} },
|
||||||
|
@{ ReleaseName = "python-3.14.0-alpha.5-win32-x64-freethreaded.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x64-freethreaded"} },
|
||||||
|
@{ ReleaseName = "python-3.14.0-alpha.5-win32-x86-freethreaded.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x86-freethreaded"} }
|
||||||
|
|
||||||
) | ForEach-Object { $_.Configuration = $Configuration; $_ }
|
) | ForEach-Object { $_.Configuration = $Configuration; $_ }
|
||||||
|
|
||||||
Describe "Python manifest config" {
|
Describe "Python manifest config" {
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ Describe "Tests" {
|
|||||||
# }
|
# }
|
||||||
# }
|
# }
|
||||||
|
|
||||||
if (($Version -ge "3.2.0") -and ($Version -lt "3.11.0") -and (($Platform -ne "darwin") -or ($HardwareArchitecture -ne "arm64"))) {
|
if (($Version -lt "3.11.0") -and (($Platform -ne "darwin") -or ($HardwareArchitecture -ne "arm64"))) {
|
||||||
It "Check if sqlite3 module is installed" {
|
It "Check if sqlite3 module is installed" {
|
||||||
"python ./sources/python-sqlite3.py" | Should -ReturnZeroExitCode
|
"python ./sources/python-sqlite3.py" | Should -ReturnZeroExitCode
|
||||||
}
|
}
|
||||||
@@ -92,16 +92,6 @@ Describe "Tests" {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Pyinstaller 3.5 does not support Python 3.8.0. Check issue https://github.com/pyinstaller/pyinstaller/issues/4311
|
|
||||||
if ($Version -lt "3.8.0" -and $Version.Major -ne "2") {
|
|
||||||
It "Validate Pyinstaller" {
|
|
||||||
"pip install pyinstaller" | Should -ReturnZeroExitCode
|
|
||||||
"pyinstaller --onefile ./sources/simple-test.py" | Should -ReturnZeroExitCode
|
|
||||||
$distPath = [IO.Path]::Combine($pwd, "dist", "simple-test")
|
|
||||||
"$distPath" | Should -ReturnZeroExitCode
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
It "Check urlopen with HTTPS works" {
|
It "Check urlopen with HTTPS works" {
|
||||||
"python ./sources/python-urlopen-https.py" | Should -ReturnZeroExitCode
|
"python ./sources/python-urlopen-https.py" | Should -ReturnZeroExitCode
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,12 +3,10 @@ Make sure all the optional modules are installed.
|
|||||||
This is needed for Linux since we build from source.
|
This is needed for Linux since we build from source.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import print_function
|
|
||||||
|
|
||||||
import importlib
|
import importlib
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
# The Python standard library as of Python 3.0
|
# The Python standard library as of Python 3.9
|
||||||
standard_library = [
|
standard_library = [
|
||||||
'abc',
|
'abc',
|
||||||
'aifc',
|
'aifc',
|
||||||
@@ -17,6 +15,7 @@ standard_library = [
|
|||||||
'ast',
|
'ast',
|
||||||
'asynchat',
|
'asynchat',
|
||||||
'asyncore',
|
'asyncore',
|
||||||
|
'asyncio',
|
||||||
'base64',
|
'base64',
|
||||||
'bdb',
|
'bdb',
|
||||||
'binhex',
|
'binhex',
|
||||||
@@ -34,14 +33,17 @@ standard_library = [
|
|||||||
'collections',
|
'collections',
|
||||||
'colorsys',
|
'colorsys',
|
||||||
'compileall',
|
'compileall',
|
||||||
|
'concurrent',
|
||||||
'configparser',
|
'configparser',
|
||||||
'contextlib',
|
'contextlib',
|
||||||
|
'contextvars',
|
||||||
'copy',
|
'copy',
|
||||||
'copyreg',
|
'copyreg',
|
||||||
'crypt',
|
'crypt',
|
||||||
'csv',
|
'csv',
|
||||||
'ctypes',
|
'ctypes',
|
||||||
'curses',
|
'curses',
|
||||||
|
'dataclasses',
|
||||||
'datetime',
|
'datetime',
|
||||||
'dbm',
|
'dbm',
|
||||||
'decimal',
|
'decimal',
|
||||||
@@ -49,9 +51,11 @@ standard_library = [
|
|||||||
'dis',
|
'dis',
|
||||||
'distutils',
|
'distutils',
|
||||||
'doctest',
|
'doctest',
|
||||||
'dummy_threading',
|
|
||||||
'email',
|
'email',
|
||||||
'encodings',
|
'encodings',
|
||||||
|
'ensurepip',
|
||||||
|
'enum',
|
||||||
|
'faulthandler',
|
||||||
'filecmp',
|
'filecmp',
|
||||||
'fileinput',
|
'fileinput',
|
||||||
'fnmatch',
|
'fnmatch',
|
||||||
@@ -77,13 +81,14 @@ standard_library = [
|
|||||||
'importlib',
|
'importlib',
|
||||||
'inspect',
|
'inspect',
|
||||||
'io',
|
'io',
|
||||||
|
'ipaddress',
|
||||||
'json',
|
'json',
|
||||||
'keyword',
|
'keyword',
|
||||||
'lib2to3',
|
'lib2to3',
|
||||||
'linecache',
|
'linecache',
|
||||||
'locale',
|
'locale',
|
||||||
'logging',
|
'logging',
|
||||||
'macpath',
|
'lzma',
|
||||||
'mailbox',
|
'mailbox',
|
||||||
'mailcap',
|
'mailcap',
|
||||||
'mimetypes',
|
'mimetypes',
|
||||||
@@ -98,6 +103,7 @@ standard_library = [
|
|||||||
'operator',
|
'operator',
|
||||||
'optparse',
|
'optparse',
|
||||||
'os',
|
'os',
|
||||||
|
'pathlib',
|
||||||
'pdb',
|
'pdb',
|
||||||
'pickle',
|
'pickle',
|
||||||
'pickletools',
|
'pickletools',
|
||||||
@@ -124,6 +130,8 @@ standard_library = [
|
|||||||
'rlcompleter',
|
'rlcompleter',
|
||||||
'runpy',
|
'runpy',
|
||||||
'sched',
|
'sched',
|
||||||
|
'secrets',
|
||||||
|
'selectors',
|
||||||
'shelve',
|
'shelve',
|
||||||
'shlex',
|
'shlex',
|
||||||
'shutil',
|
'shutil',
|
||||||
@@ -141,6 +149,7 @@ standard_library = [
|
|||||||
'ssl',
|
'ssl',
|
||||||
'_ssl',
|
'_ssl',
|
||||||
'stat',
|
'stat',
|
||||||
|
'statistics',
|
||||||
'string',
|
'string',
|
||||||
'stringprep',
|
'stringprep',
|
||||||
'struct',
|
'struct',
|
||||||
@@ -163,14 +172,17 @@ standard_library = [
|
|||||||
'tokenize',
|
'tokenize',
|
||||||
'trace',
|
'trace',
|
||||||
'traceback',
|
'traceback',
|
||||||
|
'tracemalloc',
|
||||||
'tty',
|
'tty',
|
||||||
'turtle',
|
'turtle',
|
||||||
'turtledemo',
|
'turtledemo',
|
||||||
'types',
|
'types',
|
||||||
|
'typing',
|
||||||
'unittest',
|
'unittest',
|
||||||
'urllib',
|
'urllib',
|
||||||
'uu',
|
'uu',
|
||||||
'uuid',
|
'uuid',
|
||||||
|
'venv',
|
||||||
'warnings',
|
'warnings',
|
||||||
'wave',
|
'wave',
|
||||||
'weakref',
|
'weakref',
|
||||||
@@ -179,83 +191,12 @@ standard_library = [
|
|||||||
'xdrlib',
|
'xdrlib',
|
||||||
'xml',
|
'xml',
|
||||||
'xmlrpc',
|
'xmlrpc',
|
||||||
|
'zipapp',
|
||||||
'zipfile'
|
'zipfile'
|
||||||
]
|
]
|
||||||
|
|
||||||
# Modules that had different names in Python 2
|
|
||||||
if sys.version_info.major == 2:
|
|
||||||
def replace(lst, old, new):
|
|
||||||
lst[lst.index(old)] = new
|
|
||||||
|
|
||||||
# Keys are the Python 2 names
|
|
||||||
# Values are the Python 3 names
|
|
||||||
renames = {
|
|
||||||
'ConfigParser': 'configparser',
|
|
||||||
'copy_reg': 'copyreg',
|
|
||||||
'HTMLParser': 'html',
|
|
||||||
'httplib': 'http',
|
|
||||||
'Queue': 'queue',
|
|
||||||
'repr': 'reprlib',
|
|
||||||
'SocketServer': 'socketserver',
|
|
||||||
'xmlrpclib': 'xmlrpc',
|
|
||||||
'Tkinter': 'tkinter'
|
|
||||||
}
|
|
||||||
|
|
||||||
# All of the Python 3 names should be in the list
|
|
||||||
for python2name, python3name in renames.items():
|
|
||||||
replace(standard_library, python3name, python2name)
|
|
||||||
|
|
||||||
# Add new modules
|
# Add new modules
|
||||||
# See https://docs.python.org/3/whatsnew/index.html
|
# See https://docs.python.org/3/whatsnew/index.html
|
||||||
if sys.version_info >= (3, 2):
|
|
||||||
standard_library.extend([
|
|
||||||
'concurrent',
|
|
||||||
])
|
|
||||||
|
|
||||||
if sys.version_info >= (3, 3):
|
|
||||||
standard_library.extend([
|
|
||||||
'ipaddress',
|
|
||||||
'faulthandler',
|
|
||||||
'lzma',
|
|
||||||
'venv',
|
|
||||||
])
|
|
||||||
|
|
||||||
if sys.version_info >= (3, 4):
|
|
||||||
standard_library.extend([
|
|
||||||
'asyncio',
|
|
||||||
'ensurepip',
|
|
||||||
'enum',
|
|
||||||
'pathlib',
|
|
||||||
'selectors',
|
|
||||||
'statistics',
|
|
||||||
'tracemalloc',
|
|
||||||
])
|
|
||||||
|
|
||||||
if sys.version_info >= (3, 5):
|
|
||||||
standard_library.extend([
|
|
||||||
'typing',
|
|
||||||
'zipapp',
|
|
||||||
])
|
|
||||||
|
|
||||||
if sys.version_info >= (3, 6):
|
|
||||||
standard_library.extend([
|
|
||||||
'secrets',
|
|
||||||
])
|
|
||||||
|
|
||||||
if sys.version_info >= (3, 7):
|
|
||||||
standard_library.extend([
|
|
||||||
'contextvars',
|
|
||||||
'dataclasses',
|
|
||||||
])
|
|
||||||
|
|
||||||
# 'macpath' module has been removed from Python 3.8
|
|
||||||
if sys.version_info > (3, 7):
|
|
||||||
standard_library.remove('macpath')
|
|
||||||
|
|
||||||
# 'dummy_threading' module has been removed from Python 3.9
|
|
||||||
if sys.version_info > (3, 8):
|
|
||||||
standard_library.remove('dummy_threading')
|
|
||||||
|
|
||||||
# 'symbol' and 'formatter' modules have been removed from Python 3.10
|
# 'symbol' and 'formatter' modules have been removed from Python 3.10
|
||||||
if sys.version_info >= (3, 10):
|
if sys.version_info >= (3, 10):
|
||||||
standard_library.remove('symbol')
|
standard_library.remove('symbol')
|
||||||
@@ -295,6 +236,11 @@ if sys.version_info >= (3, 13):
|
|||||||
standard_library.remove('uu')
|
standard_library.remove('uu')
|
||||||
standard_library.remove('xdrlib')
|
standard_library.remove('xdrlib')
|
||||||
|
|
||||||
|
if sys.version_info >= (3, 14):
|
||||||
|
standard_library.extend([
|
||||||
|
'annotationlib',
|
||||||
|
])
|
||||||
|
|
||||||
# Remove tkinter and Easter eggs
|
# Remove tkinter and Easter eggs
|
||||||
excluded_modules = [
|
excluded_modules = [
|
||||||
'antigravity',
|
'antigravity',
|
||||||
|
|||||||
@@ -1,9 +1,5 @@
|
|||||||
import sys
|
import sys
|
||||||
|
from urllib.request import urlopen
|
||||||
if sys.version_info[0] == 2:
|
|
||||||
from urllib2 import urlopen
|
|
||||||
else:
|
|
||||||
from urllib.request import urlopen
|
|
||||||
|
|
||||||
response = urlopen("https://raw.githubusercontent.com/actions/python-versions/c641695f6a07526c18f10e374e503e649fef9427/.gitignore")
|
response = urlopen("https://raw.githubusercontent.com/actions/python-versions/c641695f6a07526c18f10e374e503e649fef9427/.gitignore")
|
||||||
data = response.read()
|
data = response.read()
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user