Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 15bac0f

Browse files
committed
- Issue #15235: Allow Berkley DB versions up to 5.3 to build the dbm module.
1 parent 487f191 commit 15bac0f

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ Build
5151
- Issue #14330: For cross builds, don't use host python, use host search paths
5252
for host compiler.
5353

54+
- Issue #15235: Allow Berkley DB versions up to 5.3 to build the dbm module.
55+
5456

5557
What's New in Python 3.3.0 Beta 1?
5658
==================================

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ def detect_modules(self):
830830
# a release. Most open source OSes come with one or more
831831
# versions of BerkeleyDB already installed.
832832

833-
max_db_ver = (5, 1)
833+
max_db_ver = (5, 3)
834834
min_db_ver = (3, 3)
835835
db_setup_debug = False # verbose debug prints from this script?
836836

0 commit comments

Comments
 (0)