Skip to content

Commit 119de0e

Browse files
bpo-40874 Update the required libmpdec version for the decimal module (GH-21202)
(cherry picked from commit 8bea91b) Authored-by: Stefan Krah <[email protected]>
1 parent d1e05e7 commit 119de0e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The decimal module now requires libmpdec-2.5.0.

Modules/_decimal/_decimal.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
#include "docstrings.h"
3737

3838

39-
#if !defined(MPD_VERSION_HEX) || MPD_VERSION_HEX < 0x02040100
40-
#error "libmpdec version >= 2.4.1 required"
39+
#if !defined(MPD_VERSION_HEX) || MPD_VERSION_HEX < 0x02050000
40+
#error "libmpdec version >= 2.5.0 required"
4141
#endif
4242

4343

0 commit comments

Comments
 (0)