Skip to content

Commit 0cafa97

Browse files
gh-115765: Document and enforce Autoconf 2.72 requirement (#128502)
1 parent e8b6b39 commit 0cafa97

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Doc/using/configure.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Features and minimum versions required to build CPython:
2929

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

32-
* Autoconf 2.71 and aclocal 1.16.5 are required to regenerate the
32+
* Autoconf 2.72 and aclocal 1.16.5 are required to regenerate the
3333
:file:`configure` script.
3434

3535
.. versionchanged:: 3.1
@@ -58,6 +58,9 @@ Features and minimum versions required to build CPython:
5858
.. versionchanged:: 3.13
5959
Autoconf 2.71, aclocal 1.16.5 and SQLite 3.15.2 are now required.
6060

61+
.. versionchanged:: next
62+
Autoconf 2.72 is now required.
63+
6164
See also :pep:`7` "Style Guide for C Code" and :pep:`11` "CPython platform
6265
support".
6366

configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dnl ************************************************************
22
dnl * Please run autoreconf -ivf -Werror to test your changes! *
33
dnl ************************************************************
44
dnl
5-
dnl Python's configure script requires autoconf 2.71, autoconf-archive,
5+
dnl Python's configure script requires autoconf 2.72, autoconf-archive,
66
dnl aclocal 1.16, and pkg-config.
77
dnl
88
dnl It is recommended to use the Tools/build/regen-configure.sh shell script
@@ -12,7 +12,7 @@ dnl
1212
# Set VERSION so we only need to edit in one place (i.e., here)
1313
m4_define([PYTHON_VERSION], [3.14])
1414

15-
AC_PREREQ([2.71])
15+
AC_PREREQ([2.72])
1616

1717
AC_INIT([python],[PYTHON_VERSION],[https://github.com/python/cpython/issues/])
1818

0 commit comments

Comments
 (0)