Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-105844: Consistently use 'minor version' for X.Y versions #105851

Merged
merged 1 commit into from
Jun 16, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Doc/faq/general.rst
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Python versions are numbered "A.B.C" or "A.B":

See :pep:`6` for more information about bugfix releases.

Not all releases are bugfix releases. In the run-up to a new major release, a
Not all releases are bugfix releases. In the run-up to a new minor release, a
series of development releases are made, denoted as alpha, beta, or release
candidate. Alphas are early releases in which interfaces aren't yet finalized;
it's not unexpected to see an interface change between two alpha releases.
Expand Down Expand Up @@ -297,7 +297,7 @@ How stable is Python?

Very stable. New, stable releases have been coming out roughly every 6 to 18
months since 1991, and this seems likely to continue. As of version 3.9,
Python will have a major new release every 12 months (:pep:`602`).
Python will have a minor new release every 12 months (:pep:`602`).

The developers issue "bugfix" releases of older versions, so the stability of
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@AlexWaygood: I find the use of double quotes strange here. Bugfix releases contain bugfixes, not ... eh, "bugfixes" 😆

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Heh, agreed, we could probably lose these quotes 😄

existing releases gradually improves. Bugfix releases, indicated by a third
Expand Down
2 changes: 1 addition & 1 deletion Doc/install/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@

python setup.py install --home=~

To make Python find the distributions installed with this scheme, you may have

Check warning on line 375 in Doc/install/index.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

py:mod reference target not found: sitecustomize
to :ref:`modify Python's search path <inst-search-path>` or edit
:mod:`sitecustomize` (see :mod:`site`) to call :func:`site.addsitedir` or edit
:data:`sys.path`.
Expand Down Expand Up @@ -696,7 +696,7 @@
import sys
sys.path.append('/www/python/')

However, if you reinstall the same major version of Python (perhaps when
However, if you reinstall the same minor version of Python (perhaps when
upgrading from 2.2 to 2.2.2, for example) :file:`site.py` will be overwritten by
the stock version. You'd have to remember that it was modified and save a copy
before doing the installation.
Expand Down Expand Up @@ -777,7 +777,7 @@
configuration file should be put there under Python 1.5.2.

(2)
On Unix, if the :envvar:`HOME` environment variable is not defined, the user's

Check warning on line 780 in Doc/install/index.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

'envvar' reference target not found: HOME

Check warning on line 780 in Doc/install/index.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

py:func reference target not found: getpwuid
home directory will be determined with the :func:`getpwuid` function from the
standard :mod:`pwd` module. This is done by the :func:`os.path.expanduser`
function used by Distutils.
Expand All @@ -795,7 +795,7 @@
1.5.2 installation under Windows.

(5)
On Windows, if the :envvar:`HOME` environment variable is not defined,

Check warning on line 798 in Doc/install/index.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

'envvar' reference target not found: HOME

Check warning on line 798 in Doc/install/index.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

'envvar' reference target not found: USERPROFILE

Check warning on line 798 in Doc/install/index.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

'envvar' reference target not found: HOMEDRIVE

Check warning on line 798 in Doc/install/index.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

'envvar' reference target not found: HOMEPATH
:envvar:`USERPROFILE` then :envvar:`HOMEDRIVE` and :envvar:`HOMEPATH` will
be tried. This is done by the :func:`os.path.expanduser` function used
by Distutils.
Expand Down