]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
- Issue #6949: Allow the _dbm extension to be built with db 4.8.x.
authorMatthias Klose <doko@ubuntu.com>
Mon, 15 Mar 2010 12:49:46 +0000 (12:49 +0000)
committerMatthias Klose <doko@ubuntu.com>
Mon, 15 Mar 2010 12:49:46 +0000 (12:49 +0000)
Misc/NEWS
setup.py

index 2b0bd70282b02350e6488f788aee9efc3b99ea5e..440fe761d99842517f9f35685a62372facdaf1a3 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -781,6 +781,8 @@ Library
 Extension Modules
 -----------------
 
+- Issue #6949: Allow the _dbm extension to be built with db 4.8.x.
+
 - Issue #6544: fix a reference leak in the kqueue implementation's error
   handling.
 
index 77524d1c441965d769ff5f80cfc6f0e9f8d68e4f..1d648b5ee9a0902d439644a0dfb8436f9b3ad200 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -651,7 +651,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, 7)
+        max_db_ver = (4, 8)
         min_db_ver = (3, 3)
         db_setup_debug = False   # verbose debug prints from this script?