]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
- Accept Oracle Berkeley DB 5.0 and 5.1 as backend for the dbm extension.
authorMatthias Klose <doko@ubuntu.com>
Sun, 17 Oct 2010 13:22:33 +0000 (13:22 +0000)
committerMatthias Klose <doko@ubuntu.com>
Sun, 17 Oct 2010 13:22:33 +0000 (13:22 +0000)
Misc/NEWS
setup.py

index 9dad54d3e3345ae9ca43e81f61667543af40f020..519fb5eafa2b2577b091d0b9352eff25786d4904 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -109,6 +109,8 @@ Build
 
 - Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd.
 
+- Accept Oracle Berkeley DB 5.0 and 5.1 as backend for the dbm extension.
+
 
 What's New in Python 3.2 Alpha 3?
 =================================
index 861f9ef04db84657884ec6aa4e4011356c01469d..549eccbb451b4d73e0536166a6be3d7ae58a4b88 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -729,7 +729,7 @@ class PyBuildExt(build_ext):
         # a release.  Most open source OSes come with one or more
         # versions of BerkeleyDB already installed.
 
-        max_db_ver = (4, 8)
+        max_db_ver = (5, 1)
         min_db_ver = (3, 3)
         db_setup_debug = False   # verbose debug prints from this script?