Skip to content

Commit 60c7c55

Browse files
authored
Build using 3.14.0b2 (#120)
1 parent 709270b commit 60c7c55

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,20 @@ jobs:
4040
- name: Set up NuGet
4141
uses: nuget/[email protected]
4242

43-
- name: Set up Python 3.14.0b1
43+
- name: Set up Python 3.14.0b2
4444
run: |
45-
nuget install python -Version 3.14.0-b1 -x -o .
45+
nuget install python -Version 3.14.0-b2 -x -o .
4646
$py = Get-Item python\tools
4747
Write-Host "Adding $py to PATH"
4848
"$py" | Out-File $env:GITHUB_PATH -Encoding UTF8 -Append
4949
working-directory: ${{ runner.temp }}
5050

51-
- name: Check Python version is 3.14.0b1
51+
- name: Check Python version is 3.14.0b2
5252
run: >
5353
python -c "import sys;
5454
print(sys.version);
5555
print(sys.executable);
56-
sys.exit(0 if sys.version_info[:5] == (3, 14, 0, 'beta', 1) else 1)"
56+
sys.exit(0 if sys.version_info[:5] == (3, 14, 0, 'beta', 2) else 1)"
5757
5858
- name: Install build dependencies
5959
run: python -m pip install "pymsbuild>=1.2.0b1"

ci/release.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,20 @@ stages:
8787
displayName: 'Install Nuget'
8888

8989
- powershell: |
90-
nuget install -o host_python -x -noninteractive -prerelease python
91-
Write-Host "##vso[task.prependpath]$(gi host_python\python\tools)"
92-
displayName: 'Install host Python'
90+
nuget install python -Version 3.14.0-b2 -x -noninteractive -o host_python
91+
$py = Get-Item host_python\python\tools
92+
Write-Host "Adding $py to PATH"
93+
Write-Host "##vso[task.prependpath]$py"
94+
displayName: Set up Python 3.14.0b2
9395
workingDirectory: $(Build.BinariesDirectory)
9496
97+
- powershell: >
98+
python -c "import sys;
99+
print(sys.version);
100+
print(sys.executable);
101+
sys.exit(0 if sys.version_info[:5] == (3, 14, 0, 'beta', 2) else 1)"
102+
displayName: Check Python version is 3.14.0b2
103+
95104
- powershell: |
96105
python -m pip install "pymsbuild>=1.2.0b1"
97106
displayName: 'Install build dependencies'

0 commit comments

Comments
 (0)