[Python-checkins] cpython: - Issue #15235: Allow Berkley DB versions up to 5.3 to build the dbm module.

matthias.klose python-checkins at python.org
Sun Jul 1 10:38:08 CEST 2012


http://hg.python.org/cpython/rev/7be082d80b8a
changeset:   77911:7be082d80b8a
user:        doko at ubuntu.com
date:        Sun Jul 01 10:35:54 2012 +0200
summary:
  - Issue #15235: Allow Berkley DB versions up to 5.3 to build the dbm module.

files:
  Misc/NEWS |  2 ++
  setup.py  |  2 +-
  2 files changed, 3 insertions(+), 1 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -51,6 +51,8 @@
 - 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?
 ==================================
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -830,7 +830,7 @@
         # 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?
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list