diff --git a/automatic/python/python.json b/automatic/python/python.json index 7dd0812b6d9..e255146de24 100644 --- a/automatic/python/python.json +++ b/automatic/python/python.json @@ -8,7 +8,7 @@ "3.6": "3.6.8.20200110", "3.7": "3.7.9", "3.8": "3.8.10", - "3.9": "3.9.9", - "3.10": "3.10.1", - "3.11": "3.11.0-a3" + "3.9": "3.9.10", + "3.10": "3.10.2", + "3.11": "3.11.0-a4" } diff --git a/automatic/python/python.nuspec b/automatic/python/python.nuspec index 332fc9b5dd7..bc7c98ef3c6 100644 --- a/automatic/python/python.nuspec +++ b/automatic/python/python.nuspec @@ -3,7 +3,7 @@ python - 3.11.0-a3 + 3.9.10 Python chocolatey-community Python Software Foundation @@ -22,7 +22,7 @@ https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/python https://www.python.org/downloads/source - + https://www.python.org/download/releases/3.4.0/license diff --git a/automatic/python3/legal/VERIFICATION.txt b/automatic/python3/legal/VERIFICATION.txt index 97e18ea866b..474ab9cffae 100644 --- a/automatic/python3/legal/VERIFICATION.txt +++ b/automatic/python3/legal/VERIFICATION.txt @@ -7,8 +7,8 @@ Package can be verified like this: 1. Go to - x32: https://www.python.org/ftp/python/3.11.0/python-3.11.0a3.exe - x64: https://www.python.org/ftp/python/3.11.0/python-3.11.0a3-amd64.exe + x32: https://www.python.org/ftp/python/3.9.10/python-3.9.10.exe + x64: https://www.python.org/ftp/python/3.9.10/python-3.9.10-amd64.exe to download the installer. @@ -16,8 +16,8 @@ Package can be verified like this: - Use powershell function 'Get-FileHash' - Use Chocolatey utility 'checksum.exe' - checksum32: 212995B2C7AD0AB2C7BB7FDDAED2A8AB4E64933AC79A21615565328F8998BAA6 - checksum64: 0D9B002EC2CDBB7AF61EB947E754029546F71F105E78896E3E8A5DF1A06357C2 + checksum32: 203DD271F6D14CFC9211D5D1926CDCFD69FB55141C709827758DA9F54BEF4756 + checksum64: 7391537C87161625F1B82E2A8C543533C75152445F22A58C9B26961911477E76 File 'license.txt' is obtained from: https://www.python.org/download/releases/3.4.0/license/ diff --git a/automatic/python3/python3.json b/automatic/python3/python3.json index 933dd4d61f7..0694b0d5f31 100644 --- a/automatic/python3/python3.json +++ b/automatic/python3/python3.json @@ -8,7 +8,7 @@ "3.6": "3.6.8.20200110", "3.7": "3.7.9", "3.8": "3.8.10", - "3.9": "3.9.9", - "3.10": "3.10.1", - "3.11": "3.11.0-a3" + "3.9": "3.9.10", + "3.10": "3.10.2", + "3.11": "3.11.0-a4" } diff --git a/automatic/python3/python3.nuspec b/automatic/python3/python3.nuspec index ddc4c326336..ab0d5813956 100644 --- a/automatic/python3/python3.nuspec +++ b/automatic/python3/python3.nuspec @@ -3,7 +3,7 @@ python3 - 3.11.0-a3 + 3.9.10 Python 3.x chocolatey-community Python Software Foundation diff --git a/automatic/python3/tools/helpers.ps1 b/automatic/python3/tools/helpers.ps1 index 6668334fb00..00bb0ce28b6 100644 --- a/automatic/python3/tools/helpers.ps1 +++ b/automatic/python3/tools/helpers.ps1 @@ -39,14 +39,14 @@ function Install-Python { $packageArgs = @{ packageName = 'python3' fileType = 'exe' - file = "$toolsPath\python-3.11.0a3.exe" + file = "$toolsPath\python-3.9.10.exe" silentArgs = '/quiet InstallAllUsers=1 PrependPath={0} TargetDir="{1}"' -f $prependPath, $installDir validExitCodes = @(0) softwareName = 'Python 3*' } if (!$only32Bit) { - $packageArgs['file64'] = "$toolsPath\python-3.11.0a3-amd64.exe" + $packageArgs['file64'] = "$toolsPath\python-3.9.10-amd64.exe" } else { $packageArgs['packageName'] = '32-bit python3'