Skip to content

Commit 459d65a

Browse files
authored
Update Python runtime to 3.14.6 (#364)
1 parent 2b5b835 commit 459d65a

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,20 @@ jobs:
4343
- name: Set up NuGet
4444
uses: nuget/setup-nuget@b26b823c478ee115be5c9403e62c90b0bf943843 # v3.1.0
4545

46-
- name: Set up Python 3.14.5
46+
- name: Set up Python 3.14.6
4747
run: |
48-
nuget install python -Version 3.14.5 -x -o .
48+
nuget install python -Version 3.14.6 -x -o .
4949
$py = Get-Item python\tools
5050
Write-Host "Adding $py to PATH"
5151
"$py" | Out-File $env:GITHUB_PATH -Encoding UTF8 -Append
5252
working-directory: ${{ runner.temp }}
5353

54-
- name: Check Python version is 3.14.5
54+
- name: Check Python version is 3.14.6
5555
run: >
5656
python -c "import sys;
5757
print(sys.version);
5858
print(sys.executable);
59-
sys.exit(0 if sys.version_info[:5] == (3, 14, 5, 'final', 0) else 1)"
59+
sys.exit(0 if sys.version_info[:5] == (3, 14, 6, 'final', 0) else 1)"
6060
6161
- name: Install build dependencies
6262
run: python -m pip install "pymsbuild==1.2.2"

ci/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,19 +95,19 @@ stages:
9595
displayName: 'Install Nuget'
9696

9797
- powershell: |
98-
nuget install python -Version 3.14.5 -x -noninteractive -o host_python
98+
nuget install python -Version 3.14.6 -x -noninteractive -o host_python
9999
$py = Get-Item host_python\python\tools
100100
Write-Host "Adding $py to PATH"
101101
Write-Host "##vso[task.prependpath]$py"
102-
displayName: Set up Python 3.14.5
102+
displayName: Set up Python 3.14.6
103103
workingDirectory: $(Build.BinariesDirectory)
104104
105105
- powershell: >
106106
python -c "import sys;
107107
print(sys.version);
108108
print(sys.executable);
109-
sys.exit(0 if sys.version_info[:5] == (3, 14, 5, 'final', 0) else 1)"
110-
displayName: Check Python version is 3.14.5
109+
sys.exit(0 if sys.version_info[:5] == (3, 14, 6, 'final', 0) else 1)"
110+
displayName: Check Python version is 3.14.6
111111
112112
- powershell: |
113113
python -m pip install "pymsbuild==1.2.2"

0 commit comments

Comments
 (0)