diff options
author | Zachary Ware <zach@python.org> | 2024-03-18 17:07:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-18 17:07:25 (GMT) |
commit | 849e0716d378d6f9f724d1b3c386f6613d52a49d (patch) | |
tree | 4db4dfc15306913513a2d7f0e2c22924be6b3a27 /Misc/NEWS.d/next/Windows | |
parent | 7707b14489644073ab0153f5751c6ddbf3fc6f91 (diff) | |
download | cpython-849e0716d378d6f9f724d1b3c386f6613d52a49d.zip cpython-849e0716d378d6f9f724d1b3c386f6613d52a49d.tar.gz cpython-849e0716d378d6f9f724d1b3c386f6613d52a49d.tar.bz2 |
gh-115119: Switch Windows build to mpdecimal external (GH-115182)
This includes adding what should be a relatively temporary
`Modules/_decimal/windows/mpdecimal.h` shim to choose between `mpdecimal32vc.h`
or `mpdecimal64vc.h` based on which of `CONFIG_64` or `CONFIG_32` is defined.
Diffstat (limited to 'Misc/NEWS.d/next/Windows')
-rw-r--r-- | Misc/NEWS.d/next/Windows/2024-02-08-14-48-15.gh-issue-115119.qMt32O.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2024-02-08-14-48-15.gh-issue-115119.qMt32O.rst b/Misc/NEWS.d/next/Windows/2024-02-08-14-48-15.gh-issue-115119.qMt32O.rst new file mode 100644 index 0000000..f95fed1 --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2024-02-08-14-48-15.gh-issue-115119.qMt32O.rst @@ -0,0 +1,3 @@ +Switched from vendored ``libmpdecimal`` code to a separately-hosted external +package in the ``cpython-source-deps`` repository when building the +``_decimal`` module. |