File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff 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-
7875The 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
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ typedef enum {
244244PyObject *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" );
Original file line number Diff line number Diff line change 3939
4040
4141WELCOME = 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,
You can’t perform that action at this time.
0 commit comments