Skip to content

Commit

Permalink
AU: 1 updated - python3
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Apr 3, 2021
1 parent 149c14e commit a5365db
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions automatic/python3/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ Package can be verified like this:

1. Go to

x32: https://www.python.org/ftp/python/3.8.9/python-3.8.9.exe
x64: https://www.python.org/ftp/python/3.8.9/python-3.8.9-amd64.exe
x32: https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe
x64: https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe

to download the installer.

2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum32: 58B8520748B3EF6C3E57F9AFF3AA71759652B4DC578E087649E02EB944AE311F
checksum64: C877C9B0CA25E910EE41780C90690D1E7045128783A26E8173ECEB298B165144
checksum32: 89871D432BC06E4630D7B64CB1A8451E53C80E68DE29029976B12AAD7DBFA5A0
checksum64: 96088A58B7C43BC83B84E6B67F15E8706C614023DD64F9A5A14E81FF824ADADC

File 'license.txt' is obtained from:
https://www.python.org/download/releases/3.4.0/license/
2 changes: 1 addition & 1 deletion automatic/python3/python3.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"3.3": "3.3.4",
"3.4": "3.4.4.20180111",
"3.5": "3.5.4.20200110",
"3.6": "3.6.8",
"3.6": "3.6.8.20200110",
"3.7": "3.7.9",
"3.8": "3.8.9",
"3.9": "3.9.2",
Expand Down
2 changes: 1 addition & 1 deletion automatic/python3/python3.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>python3</id>
<version>3.8.9</version>
<version>3.6.8.20200110</version>
<title>Python 3.x</title>
<owners>chocolatey-community</owners>
<authors>Python Software Foundation</authors>
Expand Down
4 changes: 2 additions & 2 deletions automatic/python3/tools/helpers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ function Install-Python {
$packageArgs = @{
packageName = 'python3'
fileType = 'exe'
file = "$toolsPath\python-3.8.9.exe"
file = "$toolsPath\python-3.6.8.exe"
silentArgs = '/quiet InstallAllUsers=1 PrependPath={0} TargetDir="{1}"' -f $prependPath, $installDir
validExitCodes = @(0)
softwareName = 'Python 3*'
}

if (!$only32Bit) {
$packageArgs['file64'] = "$toolsPath\python-3.8.9-amd64.exe"
$packageArgs['file64'] = "$toolsPath\python-3.6.8-amd64.exe"
}
else {
$packageArgs['packageName'] = '32-bit python3'
Expand Down

0 comments on commit a5365db

Please sign in to comment.