From c9fa1f9534d261a0395195fd4de11fa261800645 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Mon, 27 Oct 2025 17:59:53 +0000 Subject: [PATCH] Update for 25.1 beta release --- README.md | 9 +++++---- src/_native/misc.cpp | 2 +- src/manage/commands.py | 4 ++++ 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e72b65e..d1c6ca5 100644 --- a/README.md +++ b/README.md @@ -72,11 +72,12 @@ the [Python Developer's Guide](https://devguide.python.org/) for more informatio # Release Schedule -As this project is currently considered to be in prerelease stage, -the release schedule is "as needed". - The release manager for the Python Install Manager on Windows is whoever is the -build manager for Windows for CPython. +build manager for Windows for CPython. Currently, this is @zooba. + +Releases are made as needed, with prereleases made at the release manager's +judgement. Due to the broad user base of PyManager, we have to avoid significant +changes to its interface, which means feature development is heavily restricted. ## Versioning diff --git a/src/_native/misc.cpp b/src/_native/misc.cpp index 070c0cf..3d05f0f 100644 --- a/src/_native/misc.cpp +++ b/src/_native/misc.cpp @@ -244,7 +244,7 @@ typedef enum { PyObject *get_processor_architecture(PyObject *, PyObject *, PyObject *) { SYSTEM_INFO system_info; GetNativeSystemInfo(&system_info); - + switch (system_info.wProcessorArchitecture) { case CPU_X86: return PyUnicode_FromString("-32"); case CPU_X86_64: return PyUnicode_FromString("-64"); diff --git a/src/manage/commands.py b/src/manage/commands.py index 72fb444..908b6a5 100644 --- a/src/manage/commands.py +++ b/src/manage/commands.py @@ -39,6 +39,10 @@ WELCOME = f"""!B!Python install manager was successfully updated to {__version__}.!W! + +This is a beta release, send feedback to https://github.com/python/pymanager +Changes include improvements to the first run experience, support for '!G!pythonw!W!' +commands in shebangs, and reduced space taken by the per-version launchers. """ # The 'py help' or 'pymanager help' output is constructed by these default docs,