From 8690ae57f389af0f2bb55f7b98060467795aa790 Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Sun, 17 Oct 2010 13:22:33 +0000 Subject: - Accept Oracle Berkeley DB 5.0 and 5.1 as backend for the dbm extension. --- Misc/NEWS | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Misc/NEWS b/Misc/NEWS index 9dad54d..519fb5e 100644 --- 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? ================================= diff --git a/setup.py b/setup.py index 861f9ef..549eccb 100644 --- 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? -- cgit v0.12