Skip to content

Commit

Permalink
AU: 2 updated - python python3
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jul 26, 2022
1 parent 9deab24 commit 5786463
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion automatic/python/python.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
"3.8": "3.8.10",
"3.9": "3.9.13",
"3.10": "3.10.5",
"3.11": "3.11.0-b4"
"3.11": "3.11.0-b5"
}
4 changes: 2 additions & 2 deletions automatic/python/python.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>python</id>
<version>3.11.0-b4</version>
<version>3.11.0-b5</version>
<title>Python</title>
<owners>chocolatey-community</owners>
<authors>Python Software Foundation</authors>
Expand All @@ -22,7 +22,7 @@
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/python</packageSourceUrl>
<projectSourceUrl>https://www.python.org/downloads/source</projectSourceUrl>
<dependencies>
<dependency id="python3" version="[3.11.0-b4]" />
<dependency id="python3" version="[3.11.0-b5]" />
</dependencies>
<licenseUrl>https://www.python.org/download/releases/3.4.0/license</licenseUrl>
</metadata>
Expand Down
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.11.0/python-3.11.0b4.exe
x64: https://www.python.org/ftp/python/3.11.0/python-3.11.0b4-amd64.exe
x32: https://www.python.org/ftp/python/3.11.0/python-3.11.0b5.exe
x64: https://www.python.org/ftp/python/3.11.0/python-3.11.0b5-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: 6FEBC152711840337F53E2FD5DC12BB2B1314766F591129282FD372C855FA877
checksum64: A3514B0401E6A85416F3E080586C86CCD9E2E62C8A54B9119D9E6415E3CADB62
checksum32: 382EB4C6DC1606BD3CF6F4BDEEC8E1E7DAB444C5AA23B86142D608A480D7C195
checksum64: 0CF9D582DA862F2FE207FD54B81DFCA110E8F04F4B05AB8C3228CE1EA060C7AF

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 @@ -10,5 +10,5 @@
"3.8": "3.8.10",
"3.9": "3.9.13",
"3.10": "3.10.5",
"3.11": "3.11.0-b4"
"3.11": "3.11.0-b5"
}
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.11.0-b4</version>
<version>3.11.0-b5</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.11.0b4.exe"
file = "$toolsPath\python-3.11.0b5.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.0b4-amd64.exe"
$packageArgs['file64'] = "$toolsPath\python-3.11.0b5-amd64.exe"
}
else {
$packageArgs['packageName'] = '32-bit python3'
Expand Down

0 comments on commit 5786463

Please sign in to comment.