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 May 8, 2022
1 parent 3f19497 commit 25ea2f1
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.12",
"3.10": "3.10.4",
"3.11": "3.11.0-a7"
"3.11": "3.11.0-b1"
}
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-a7</version>
<version>3.11.0-b1</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-a7]" />
<dependency id="python3" version="[3.11.0-b1]" />
</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.0a7.exe
x64: https://www.python.org/ftp/python/3.11.0/python-3.11.0a7-amd64.exe
x32: https://www.python.org/ftp/python/3.11.0/python-3.11.0b1.exe
x64: https://www.python.org/ftp/python/3.11.0/python-3.11.0b1-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: 0B474EA0C2A831B549C1A1CA08A6226DEA5A28929F504D9E54A75F50E912D8D7
checksum64: 67864B5456037BC086DA59F960391E0E54BE98871A3CDF386328FF865407DF30
checksum32: F8B917986BD5FC3B26A892CB0F9A102D78DFB76CD2D51EED43B893D2220EBF24
checksum64: 4476A79D0EFE9C758BF88470E7AACA4466EA84AF69883AA564EB9607A9FBDCEE

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.12",
"3.10": "3.10.4",
"3.11": "3.11.0-a7"
"3.11": "3.11.0-b1"
}
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-a7</version>
<version>3.11.0-b1</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.0a7.exe"
file = "$toolsPath\python-3.11.0b1.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.0a7-amd64.exe"
$packageArgs['file64'] = "$toolsPath\python-3.11.0b1-amd64.exe"
}
else {
$packageArgs['packageName'] = '32-bit python3'
Expand Down

0 comments on commit 25ea2f1

Please sign in to comment.