summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-03-10 13:37:19 (GMT)
committerGitHub <noreply@github.com>2022-03-10 13:37:19 (GMT)
commit9b51fd5d137b662c940f072297b30815f37f105b (patch)
treec18783a74bcc6ad39ebb0ee452a2284ac871d95c /Doc/whatsnew
parentde554d6e02228b840eb6bffaf7d406c0ef368d5f (diff)
downloadcpython-9b51fd5d137b662c940f072297b30815f37f105b.zip
cpython-9b51fd5d137b662c940f072297b30815f37f105b.tar.gz
cpython-9b51fd5d137b662c940f072297b30815f37f105b.tar.bz2
bpo-46917: Require IEEE 754 to build Python (GH-31790)
Building Python now requires support of IEEE 754 floating point numbers.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.11.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index 4514de9..0e3ccb6 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -645,6 +645,9 @@ Build Changes
* Building Python now requires a C11 compiler without optional C11 features.
(Contributed by Victor Stinner in :issue:`46656`.)
+* Building Python now requires support of IEEE 754 floating point numbers.
+ (Contributed by Victor Stinner in :issue:`46917`.)
+
* CPython can now be built with the ThinLTO option via ``--with-lto=thin``.
(Contributed by Dong-hee Na and Brett Holman in :issue:`44340`.)