File tree 2 files changed +5
-5
lines changed
src/deadline_test_fixtures/deadline
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -609,11 +609,11 @@ def userdata(self, s3_files) -> str:
609
609
610
610
userdata = f"""<powershell>
611
611
$ProgressPreference = 'SilentlyContinue'
612
- Invoke-WebRequest -Uri "https://www.python.org/ftp/python/3.12.8 /python-3.12.8 -amd64.exe" -OutFile "C:\python-3.12.8 -amd64.exe"
613
- $installerHash=(Get-FileHash "C:\python-3.12.8 -amd64.exe" -Algorithm "MD5")
614
- $expectedHash="2f2ab2472a6aa29f8755c72c58f58f4b "
612
+ Invoke-WebRequest -Uri "https://www.python.org/ftp/python/3.12.9 /python-3.12.9 -amd64.exe" -OutFile "C:\python-3.12.9 -amd64.exe"
613
+ $installerHash=(Get-FileHash "C:\python-3.12.9 -amd64.exe" -Algorithm "MD5")
614
+ $expectedHash="1cfb1bbf96007b12b98db895dcd86487 "
615
615
if ($installerHash.Hash -ne $expectedHash) {{ throw "Could not verify Python installer." }}
616
- Start-Process -FilePath "C:\python-3.12.8 -amd64.exe" -ArgumentList "/quiet InstallAllUsers=1 PrependPath=1 AppendPath=1" -Wait
616
+ Start-Process -FilePath "C:\python-3.12.9 -amd64.exe" -ArgumentList "/quiet InstallAllUsers=1 PrependPath=1 AppendPath=1" -Wait
617
617
Invoke-WebRequest -Uri "https://awscli.amazonaws.com/AWSCLIV2.msi" -Outfile "C:\AWSCLIV2.msi"
618
618
Start-Process msiexec.exe -ArgumentList "/i C:\AWSCLIV2.msi /quiet" -Wait
619
619
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine")
Original file line number Diff line number Diff line change 8
8
_copyright_header_re = re .compile (
9
9
r"Copyright Amazon\.com, Inc\. or its affiliates\. All Rights Reserved\." , re .IGNORECASE
10
10
)
11
- _generated_by_scm = re .compile (r"# file generated by setuptools_scm " , re .IGNORECASE )
11
+ _generated_by_scm = re .compile (r"# file generated by setuptools[_-]scm " , re .IGNORECASE )
12
12
13
13
14
14
class CopyrightHeaderNotFoundException (Exception ):
You can’t perform that action at this time.
0 commit comments