@@ -33,30 +33,30 @@ jobs:
3333 }
3434 shell : powershell
3535
36- # - name: Set up Python 3.14
36+ # - name: Set up Python 3.15
3737 # uses: actions/setup-python@v5
3838 # with:
39- # python-version: 3.14 -dev
39+ # python-version: 3.15 -dev
4040
4141 # We move faster than GitHub's Python runtimes, so use NuGet instead
4242 # One day we can use ourselves to download Python, but not yet...
4343 - name : Set up NuGet
4444 uses : nuget/setup-nuget@b26b823c478ee115be5c9403e62c90b0bf943843 # v3.1.0
4545
46- - name : Set up Python 3.14.6
46+ - name : Set up Python 3.15.0rc1
4747 run : |
48- nuget install python -Version 3.14.6 -x -o .
48+ nuget install python -Version 3.15.0-rc1 -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.6
54+ - name : Check Python version is 3.15.0rc1
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, 6 , 'final ', 0 ) else 1)"
59+ sys.exit(0 if sys.version_info[:5] == (3, 15, 0 , 'candidate ', 1 ) else 1)"
6060
6161 - name : Install build dependencies
6262 run : python -m pip install "pymsbuild==1.2.2"
0 commit comments