Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 487f191 commit 15bac0fCopy full SHA for 15bac0f
2 files changed
Misc/NEWS
@@ -51,6 +51,8 @@ Build
51
- Issue #14330: For cross builds, don't use host python, use host search paths
52
for host compiler.
53
54
+- Issue #15235: Allow Berkley DB versions up to 5.3 to build the dbm module.
55
+
56
57
What's New in Python 3.3.0 Beta 1?
58
==================================
setup.py
@@ -830,7 +830,7 @@ def detect_modules(self):
830
# a release. Most open source OSes come with one or more
831
# versions of BerkeleyDB already installed.
832
833
- max_db_ver = (5, 1)
+ max_db_ver = (5, 3)
834
min_db_ver = (3, 3)
835
db_setup_debug = False # verbose debug prints from this script?
836
0 commit comments