Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 4 additions & 1 deletion Doc/using/configure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Features and minimum versions required to build CPython:

* Tcl/Tk 8.5.12 for the :mod:`tkinter` module.

* Autoconf 2.71 and aclocal 1.16.4 are required to regenerate the
* Autoconf 2.71 and aclocal 1.16.5 are required to regenerate the
:file:`configure` script.

.. versionchanged:: 3.1
Expand Down Expand Up @@ -58,6 +58,9 @@ Features and minimum versions required to build CPython:
.. versionchanged:: 3.13
Autoconf 2.71, aclocal 1.16.4 and SQLite 3.15.2 are now required.

.. versionchanged:: 3.13
Require aclocal 1.16.5.
Copy link
Member

Choose a reason for hiding this comment

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

Change the previous 3.13 entry instead.

Copy link
Member Author

Choose a reason for hiding this comment

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

Sorry, it was stupid error.


See also :pep:`7` "Style Guide for C Code" and :pep:`11` "CPython platform
support".

Expand Down
4 changes: 2 additions & 2 deletions Doc/whatsnew/3.13.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2495,9 +2495,9 @@ Build Changes
* Building CPython now requires a compiler with support for the C11 atomic
library, GCC built-in atomic functions, or MSVC interlocked intrinsics.

* Autoconf 2.71 and aclocal 1.16.4 are now required to regenerate
* Autoconf 2.71 and aclocal 1.16.5 are now required to regenerate
the :file:`configure` script.
(Contributed by Christian Heimes in :gh:`89886`.)
(Contributed by Victor Stinner in :gh:`112090`.)
Copy link
Member

Choose a reason for hiding this comment

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

You should keep Christian, I didn't require autoconf 2.71 in d9fd33a.

Something like:

(Contributed by Christian Heimes in :gh:`89886` and by Victor Stinner in :gh:`112090`.)


* SQLite 3.15.2 or newer is required to build
the :mod:`sqlite3` extension module.
Expand Down
Loading