diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3c98a6f..825651e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,20 +43,20 @@ jobs: - name: Set up NuGet uses: nuget/setup-nuget@b26b823c478ee115be5c9403e62c90b0bf943843 # v3.1.0 - - name: Set up Python 3.14.5 + - name: Set up Python 3.14.6 run: | - nuget install python -Version 3.14.5 -x -o . + nuget install python -Version 3.14.6 -x -o . $py = Get-Item python\tools Write-Host "Adding $py to PATH" "$py" | Out-File $env:GITHUB_PATH -Encoding UTF8 -Append working-directory: ${{ runner.temp }} - - name: Check Python version is 3.14.5 + - name: Check Python version is 3.14.6 run: > python -c "import sys; print(sys.version); print(sys.executable); - sys.exit(0 if sys.version_info[:5] == (3, 14, 5, 'final', 0) else 1)" + sys.exit(0 if sys.version_info[:5] == (3, 14, 6, 'final', 0) else 1)" - name: Install build dependencies run: python -m pip install "pymsbuild==1.2.2" diff --git a/ci/release.yml b/ci/release.yml index 943484b..33363e5 100644 --- a/ci/release.yml +++ b/ci/release.yml @@ -95,19 +95,19 @@ stages: displayName: 'Install Nuget' - powershell: | - nuget install python -Version 3.14.5 -x -noninteractive -o host_python + nuget install python -Version 3.14.6 -x -noninteractive -o host_python $py = Get-Item host_python\python\tools Write-Host "Adding $py to PATH" Write-Host "##vso[task.prependpath]$py" - displayName: Set up Python 3.14.5 + displayName: Set up Python 3.14.6 workingDirectory: $(Build.BinariesDirectory) - powershell: > python -c "import sys; print(sys.version); print(sys.executable); - sys.exit(0 if sys.version_info[:5] == (3, 14, 5, 'final', 0) else 1)" - displayName: Check Python version is 3.14.5 + sys.exit(0 if sys.version_info[:5] == (3, 14, 6, 'final', 0) else 1)" + displayName: Check Python version is 3.14.6 - powershell: | python -m pip install "pymsbuild==1.2.2"