From 9550aa1c8146d0c480c1164215418bb21d6a3c3e Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Mon, 15 Mar 2010 12:49:46 +0000 Subject: [PATCH] - Issue #6949: Allow the _dbm extension to be built with db 4.8.x. --- Misc/NEWS | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Misc/NEWS b/Misc/NEWS index 2b0bd70282..440fe761d9 100644 --- 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. diff --git a/setup.py b/setup.py index 77524d1c44..1d648b5ee9 100644 --- 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? -- 2.40.0