]> granicus.if.org Git - python/commitdiff
- Issue #15235: Allow Berkley DB versions up to 5.3 to build the dbm module.
authordoko@ubuntu.com <doko@ubuntu.com>
Sun, 1 Jul 2012 08:35:54 +0000 (10:35 +0200)
committerdoko@ubuntu.com <doko@ubuntu.com>
Sun, 1 Jul 2012 08:35:54 +0000 (10:35 +0200)
Misc/NEWS
setup.py

index 44a3d14db9f2a5b2e0c9f75281fd23c809fca48d..cdd3162afff9ced54b87c7d0ccfdcf2e3dd554f8 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -51,6 +51,8 @@ Build
 - Issue #14330: For cross builds, don't use host python, use host search paths
   for host compiler.
 
+- Issue #15235: Allow Berkley DB versions up to 5.3 to build the dbm module.
+
 
 What's New in Python 3.3.0 Beta 1?
 ==================================
index d654aab0cf69ee7bf343f3698a4f4546793239a6..c7c5929b652860017c18163bdd0f8647069b4e5a 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -830,7 +830,7 @@ class PyBuildExt(build_ext):
         # a release.  Most open source OSes come with one or more
         # versions of BerkeleyDB already installed.
 
-        max_db_ver = (5, 1)
+        max_db_ver = (5, 3)
         min_db_ver = (3, 3)
         db_setup_debug = False   # verbose debug prints from this script?