Skip to content

Commit 0a3924e

Browse files
committed
Merge main
2 parents 5be8d04 + fa2de8c commit 0a3924e

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
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.0
43+
- name: Set up Python 3.14.1
4444
run: |
45-
nuget install python -Version 3.14.0 -x -o .
45+
nuget install python -Version 3.14.1 -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.0
51+
- name: Check Python version is 3.14.1
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, 'final', 0) else 1)"
56+
sys.exit(0 if sys.version_info[:5] == (3, 14, 1, 'final', 0) else 1)"
5757
5858
- name: Install build dependencies
5959
run: python -m pip install "pymsbuild>=1.2.0b1"

ci/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,19 +87,19 @@ stages:
8787
displayName: 'Install Nuget'
8888

8989
- powershell: |
90-
nuget install python -Version 3.14.0 -x -noninteractive -o host_python
90+
nuget install python -Version 3.14.1 -x -noninteractive -o host_python
9191
$py = Get-Item host_python\python\tools
9292
Write-Host "Adding $py to PATH"
9393
Write-Host "##vso[task.prependpath]$py"
94-
displayName: Set up Python 3.14.0
94+
displayName: Set up Python 3.14.1
9595
workingDirectory: $(Build.BinariesDirectory)
9696
9797
- powershell: >
9898
python -c "import sys;
9999
print(sys.version);
100100
print(sys.executable);
101-
sys.exit(0 if sys.version_info[:5] == (3, 14, 0, 'final', 0) else 1)"
102-
displayName: Check Python version is 3.14.0
101+
sys.exit(0 if sys.version_info[:5] == (3, 14, 1, 'final', 0) else 1)"
102+
displayName: Check Python version is 3.14.1
103103
104104
- powershell: |
105105
python -m pip install "pymsbuild>=1.2.0b1"

src/manage/commands.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@
3939

4040

4141
WELCOME = f"""!B!Python install manager was successfully updated to {__version__}.!W!
42-
43-
This is a beta release, send feedback to https://github.com/python/pymanager
44-
Changes include improvements to the first run experience, support for '!G!pythonw!W!'
45-
commands in shebangs, and reduced space taken by the per-version launchers.
4642
"""
4743

4844
# The 'py help' or 'pymanager help' output is constructed by these default docs,

0 commit comments

Comments
 (0)