Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/_native/misc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
4 changes: 4 additions & 0 deletions src/manage/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down