Skip to content

Commit 3b5cdd5

Browse files
authored
Update for 25.1 beta release (#209)
1 parent 7a8060c commit 3b5cdd5

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,12 @@ the [Python Developer's Guide](https://devguide.python.org/) for more informatio
7272

7373
# Release Schedule
7474

75-
As this project is currently considered to be in prerelease stage,
76-
the release schedule is "as needed".
77-
7875
The release manager for the Python Install Manager on Windows is whoever is the
79-
build manager for Windows for CPython.
76+
build manager for Windows for CPython. Currently, this is @zooba.
77+
78+
Releases are made as needed, with prereleases made at the release manager's
79+
judgement. Due to the broad user base of PyManager, we have to avoid significant
80+
changes to its interface, which means feature development is heavily restricted.
8081

8182
## Versioning
8283

src/_native/misc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ typedef enum {
244244
PyObject *get_processor_architecture(PyObject *, PyObject *, PyObject *) {
245245
SYSTEM_INFO system_info;
246246
GetNativeSystemInfo(&system_info);
247-
247+
248248
switch (system_info.wProcessorArchitecture) {
249249
case CPU_X86: return PyUnicode_FromString("-32");
250250
case CPU_X86_64: return PyUnicode_FromString("-64");

src/manage/commands.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@
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.
4246
"""
4347

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

0 commit comments

Comments
 (0)