mirror of
https://github.com/actions/python-versions.git
synced 2025-12-15 15:32:11 +00:00
Compare commits
77 Commits
3.8.4-9674
...
3.8.10-117
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
641a2765a7 | ||
|
|
cd4aab3bcf | ||
|
|
a0626d7456 | ||
|
|
c188065d51 | ||
|
|
33626e4771 | ||
|
|
6b02f07da7 | ||
|
|
42ff8b9a2a | ||
|
|
3562b8bc34 | ||
|
|
94d9e62fbb | ||
|
|
816cfb12d1 | ||
|
|
668a260bba | ||
|
|
4f1d1dda80 | ||
|
|
8eb345d3b8 | ||
|
|
2dce5239a3 | ||
|
|
d5472c1012 | ||
|
|
ae216d3a0b | ||
|
|
cd4f6ca68b | ||
|
|
ec9012838d | ||
|
|
15c1e1e92a | ||
|
|
0075d77064 | ||
|
|
d2b344f99d | ||
|
|
246bfead61 | ||
|
|
490db05934 | ||
|
|
92c8370e8e | ||
|
|
b3e4f66ad2 | ||
|
|
8d36c70cd9 | ||
|
|
cafef413c6 | ||
|
|
fb7c9cac65 | ||
|
|
4af5e99917 | ||
|
|
e2e5ffd8ae | ||
|
|
4db82a6ce6 | ||
|
|
cc1f58e61a | ||
|
|
9d8a813dad | ||
|
|
ae1d3a167a | ||
|
|
9be4c52826 | ||
|
|
41e5bb2c77 | ||
|
|
377d03cd57 | ||
|
|
e68c876eef | ||
|
|
bafafe0b03 | ||
|
|
877b6db711 | ||
|
|
572e1b8c6b | ||
|
|
2299a1c570 | ||
|
|
42c89ca94a | ||
|
|
c63d3d41a9 | ||
|
|
d35d265aa0 | ||
|
|
d58fdbe79e | ||
|
|
c5438521f1 | ||
|
|
c67d314ddc | ||
|
|
ae7e50b370 | ||
|
|
7d36f506c4 | ||
|
|
f670a2adea | ||
|
|
505f65215c | ||
|
|
4598952486 | ||
|
|
42bcd17332 | ||
|
|
878244d959 | ||
|
|
42c2eea389 | ||
|
|
493c59469e | ||
|
|
bd93b9d693 | ||
|
|
d0e5494ee2 | ||
|
|
0601c2bfde | ||
|
|
4eb1751819 | ||
|
|
54aba042fd | ||
|
|
31ab2bc9f8 | ||
|
|
5f4f86cc5e | ||
|
|
8ea13d774e | ||
|
|
afecc6a8b9 | ||
|
|
f4b22cc454 | ||
|
|
281024aec4 | ||
|
|
17b1cd02ca | ||
|
|
33a76c361a | ||
|
|
371f79b70a | ||
|
|
3b961aaf4b | ||
|
|
e67096ebd1 | ||
|
|
bd7c907270 | ||
|
|
8a3240d440 | ||
|
|
0da39d896f | ||
|
|
9fb025cb4b |
7
.github/workflows/releases-validation.yml
vendored
7
.github/workflows/releases-validation.yml
vendored
@@ -1,5 +1,6 @@
|
|||||||
name: Validate 'versions-manifest.json' file
|
name: Validate 'versions-manifest.json' file
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
@@ -13,7 +14,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [macos-latest, windows-latest, ubuntu-16.04, ubuntu-18.04, ubuntu-20.04]
|
os: [macos-latest, windows-latest, ubuntu-18.04, ubuntu-20.04]
|
||||||
python: [3.5.4, 3.6.7, 3.7.5, 3.8.1]
|
python: [3.5.4, 3.6.7, 3.7.5, 3.8.1]
|
||||||
steps:
|
steps:
|
||||||
- name: setup-python ${{ matrix.python }}
|
- name: setup-python ${{ matrix.python }}
|
||||||
@@ -32,4 +33,4 @@ jobs:
|
|||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
|
||||||
- name: Run simple code
|
- name: Run simple code
|
||||||
run: python -c 'import math; print(math.factorial(5))'
|
run: python -c 'import math; print(math.factorial(5))'
|
||||||
|
|||||||
48
.github/workflows/validate-manifest.yml
vendored
Normal file
48
.github/workflows/validate-manifest.yml
vendored
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
name: Validate manifest
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 8,20 * * *'
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- 'versions-manifest.json'
|
||||||
|
|
||||||
|
env:
|
||||||
|
TOOL_NAME: "Python"
|
||||||
|
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: pwsh
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
validation:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- name: Validate python-versions manifest
|
||||||
|
run: .\helpers\packages-generation\manifest-validator.ps1 -ManifestPath '.\versions-manifest.json'
|
||||||
|
|
||||||
|
check_build:
|
||||||
|
name: Check validation for failures
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [validation]
|
||||||
|
if: failure()
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- name: Send Slack notification if validation fails
|
||||||
|
run: |
|
||||||
|
$pipelineUrl = "$env:GITHUB_SERVER_URL/$env:GITHUB_REPOSITORY/actions/runs/$env:GITHUB_RUN_ID"
|
||||||
|
$message = "The validation of python-versions manifest failed. \nLink to the pipeline: $pipelineUrl"
|
||||||
|
.\helpers\get-new-tool-versions\send-slack-notification.ps1 -Url "${{ secrets.SLACK_CHANNEL_URL }}" `
|
||||||
|
-ToolName "${{ env.TOOL_NAME }}" `
|
||||||
|
-Text "$message" `
|
||||||
|
-ImageUrl "https://www.python.org/static/community_logos/python-powered-h-100x130.png"
|
||||||
@@ -22,25 +22,6 @@ stages:
|
|||||||
jobs:
|
jobs:
|
||||||
- template: /azure-pipelines/templates/test-job.yml
|
- template: /azure-pipelines/templates/test-job.yml
|
||||||
|
|
||||||
- stage: Build_Python_Ubuntu_1604
|
|
||||||
dependsOn: []
|
|
||||||
variables:
|
|
||||||
VmImage: 'ubuntu-16.04'
|
|
||||||
Platform: linux-16.04
|
|
||||||
Architecture: x64
|
|
||||||
jobs:
|
|
||||||
- template: /azure-pipelines/templates/build-job.yml
|
|
||||||
|
|
||||||
- stage: Test_Python_Ubuntu_1604
|
|
||||||
condition: succeeded()
|
|
||||||
dependsOn: Build_Python_Ubuntu_1604
|
|
||||||
variables:
|
|
||||||
VmImage: 'ubuntu-16.04'
|
|
||||||
Platform: linux-16.04
|
|
||||||
Architecture: x64
|
|
||||||
jobs:
|
|
||||||
- template: /azure-pipelines/templates/test-job.yml
|
|
||||||
|
|
||||||
- stage: Build_Python_Ubuntu_1804
|
- stage: Build_Python_Ubuntu_1804
|
||||||
dependsOn: []
|
dependsOn: []
|
||||||
variables:
|
variables:
|
||||||
@@ -118,7 +99,7 @@ stages:
|
|||||||
- template: /azure-pipelines/templates/test-job.yml
|
- template: /azure-pipelines/templates/test-job.yml
|
||||||
|
|
||||||
- stage: Publish_Release
|
- stage: Publish_Release
|
||||||
dependsOn: [Test_Python_MacOS, Test_Python_Ubuntu_1604, Test_Python_Ubuntu_1804, Test_Python_Ubuntu_2004, Test_Python_x64_Windows, Test_Python_x86_Windows]
|
dependsOn: [Test_Python_MacOS, Test_Python_Ubuntu_1804, Test_Python_Ubuntu_2004, Test_Python_x64_Windows, Test_Python_x86_Windows]
|
||||||
jobs:
|
jobs:
|
||||||
- deployment: Publish_Release
|
- deployment: Publish_Release
|
||||||
pool:
|
pool:
|
||||||
|
|||||||
@@ -52,6 +52,7 @@ class macOSPythonBuilder : NixPythonBuilder {
|
|||||||
$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"
|
||||||
}
|
}
|
||||||
|
|
||||||
Execute-Command -Command $configureString
|
Execute-Command -Command $configureString
|
||||||
|
|||||||
@@ -86,10 +86,7 @@ class UbuntuPythonBuilder : NixPythonBuilder {
|
|||||||
Execute-Command -Command "sudo apt install -y $_"
|
Execute-Command -Command "sudo apt install -y $_"
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this.Platform -ne "linux-16.04") {
|
### On Ubuntu-1804, libgdbm-compat-dev has older modules that are no longer in libgdbm-dev
|
||||||
### On Ubuntu-1804, libgdbm-compat-dev has older modules that are no longer in libgdbm-dev
|
Execute-Command -Command "sudo apt install -y libgdbm-compat-dev"
|
||||||
Execute-Command -Command "sudo apt install -y libgdbm-compat-dev"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
2
helpers
2
helpers
Submodule helpers updated: f8f76caff1...6f1aa3ce73
@@ -48,9 +48,9 @@ fi
|
|||||||
|
|
||||||
chmod +x ../python $PYTHON_MAJOR $PYTHON_MAJOR_DOT_MINOR $PYTHON_MAJORMINOR python
|
chmod +x ../python $PYTHON_MAJOR $PYTHON_MAJOR_DOT_MINOR $PYTHON_MAJORMINOR python
|
||||||
|
|
||||||
echo "Upgrading PIP..."
|
echo "Upgrading pip..."
|
||||||
./python -m ensurepip
|
./python -m ensurepip
|
||||||
./python -m pip install --ignore-installed pip --no-warn-script-location
|
./python -m pip install --ignore-installed pip --disable-pip-version-check --no-warn-script-location
|
||||||
|
|
||||||
echo "Create complete file"
|
echo "Create complete file"
|
||||||
touch $PYTHON_TOOLCACHE_VERSION_PATH/x64.complete
|
touch $PYTHON_TOOLCACHE_VERSION_PATH/x64.complete
|
||||||
|
|||||||
@@ -28,16 +28,20 @@ function Remove-RegistryEntries {
|
|||||||
$versionFilter = Get-RegistryVersionFilter -Architecture $Architecture -MajorVersion $MajorVersion -MinorVersion $MinorVersion
|
$versionFilter = Get-RegistryVersionFilter -Architecture $Architecture -MajorVersion $MajorVersion -MinorVersion $MinorVersion
|
||||||
|
|
||||||
$regPath = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products"
|
$regPath = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products"
|
||||||
$regKeys = Get-ChildItem -Path Registry::$regPath -Recurse | Where-Object Property -Ccontains DisplayName
|
if (Test-Path -Path Registry::$regPath) {
|
||||||
foreach ($key in $regKeys) {
|
$regKeys = Get-ChildItem -Path Registry::$regPath -Recurse | Where-Object Property -Ccontains DisplayName
|
||||||
if ($key.getValue("DisplayName") -match $versionFilter) {
|
foreach ($key in $regKeys) {
|
||||||
Remove-Item -Path $key.PSParentPath -Recurse -Force -Verbose
|
if ($key.getValue("DisplayName") -match $versionFilter) {
|
||||||
|
Remove-Item -Path $key.PSParentPath -Recurse -Force -Verbose
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$regPath = "HKEY_CLASSES_ROOT\Installer\Products"
|
$regPath = "HKEY_CLASSES_ROOT\Installer\Products"
|
||||||
Get-ChildItem -Path Registry::$regPath | Where-Object { $_.GetValue("ProductName") -match $versionFilter } | ForEach-Object {
|
if (Test-Path -Path Registry::$regPath) {
|
||||||
Remove-Item Registry::$_ -Recurse -Force -Verbose
|
Get-ChildItem -Path Registry::$regPath | Where-Object { $_.GetValue("ProductName") -match $versionFilter } | ForEach-Object {
|
||||||
|
Remove-Item Registry::$_ -Recurse -Force -Verbose
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$uninstallRegistrySections = @(
|
$uninstallRegistrySections = @(
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ $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-darwin-x64.tar.gz"; ExpectedResult = @{ platform = "darwin"; platform_version = $null; arch = "x64"} },
|
||||||
@{ ReleaseName = "python-3.8.3-linux-16.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "16.04"; arch = "x64"} },
|
|
||||||
@{ ReleaseName = "python-3.8.3-linux-18.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "18.04"; arch = "x64"} },
|
@{ ReleaseName = "python-3.8.3-linux-18.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "18.04"; 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.8.3-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.8.3-win32-x64.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x64"} },
|
||||||
@@ -14,7 +13,6 @@ $stableTestCases = @(
|
|||||||
|
|
||||||
$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-alpha.2-darwin-x64.tar.gz"; ExpectedResult = @{ platform = "darwin"; platform_version = $null; arch = "x64"} },
|
||||||
@{ ReleaseName = "python-3.9.0-beta.1-linux-16.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "16.04"; arch = "x64"} },
|
|
||||||
@{ ReleaseName = "python-3.9.0-rc.4-linux-18.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "18.04"; arch = "x64"} },
|
@{ ReleaseName = "python-3.9.0-rc.4-linux-18.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "18.04"; 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.9.0-beta.2-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.9.0-beta.2-win32-x64.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x64"} },
|
||||||
|
|||||||
@@ -21,9 +21,14 @@ function Analyze-MissingModules([string] $buildOutputLocation) {
|
|||||||
$regexMatch = [regex]::match($SplitBuiltOutput, $Pattern)
|
$regexMatch = [regex]::match($SplitBuiltOutput, $Pattern)
|
||||||
if ($regexMatch.Success)
|
if ($regexMatch.Success)
|
||||||
{
|
{
|
||||||
|
$module = $regexMatch.Groups[1].Value.Trim()
|
||||||
Write-Host "Failed missing modules:"
|
Write-Host "Failed missing modules:"
|
||||||
Write-Host $regexMatch.Groups[1].Value
|
Write-Host $module
|
||||||
return 1
|
if ( ($module -eq "_tkinter") -and ( [semver]"$($Version.Major).$($Version.Minor)" -ge [semver]"3.10" -and $Version.PreReleaseLabel ) ) {
|
||||||
|
Write-Host "$module $Version ignored"
|
||||||
|
} else {
|
||||||
|
return 1
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
@@ -82,4 +87,4 @@ Describe "Tests" {
|
|||||||
"./dist/simple-test" | Should -ReturnZeroExitCode
|
"./dist/simple-test" | Should -ReturnZeroExitCode
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -261,6 +261,10 @@ if sys.version_info >= (3, 10):
|
|||||||
standard_library.remove('symbol')
|
standard_library.remove('symbol')
|
||||||
standard_library.remove('formatter')
|
standard_library.remove('formatter')
|
||||||
|
|
||||||
|
# 'binhex' module has been removed from Python 3.11
|
||||||
|
if sys.version_info >= (3, 11):
|
||||||
|
standard_library.remove('binhex')
|
||||||
|
|
||||||
# Remove tkinter and Easter eggs
|
# Remove tkinter and Easter eggs
|
||||||
excluded_modules = [
|
excluded_modules = [
|
||||||
'antigravity',
|
'antigravity',
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user