diff options
author | doko@ubuntu.com <doko@ubuntu.com> | 2012-07-01 08:35:54 (GMT) |
---|---|---|
committer | doko@ubuntu.com <doko@ubuntu.com> | 2012-07-01 08:35:54 (GMT) |
commit | 15bac0f4da14c9a6b74fbb9048726bbe266c2977 (patch) | |
tree | f9553213e9b11838d0a2fed2eb7a214548ea99ba | |
parent | 487f191b799ec102ab8f24ff7bd92a3a4b472122 (diff) | |
download | cpython-15bac0f4da14c9a6b74fbb9048726bbe266c2977.zip cpython-15bac0f4da14c9a6b74fbb9048726bbe266c2977.tar.gz cpython-15bac0f4da14c9a6b74fbb9048726bbe266c2977.tar.bz2 |
- Issue #15235: Allow Berkley DB versions up to 5.3 to build the dbm module.
-rw-r--r-- | Misc/NEWS | 2 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -51,6 +51,8 @@ Build - 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? ================================== @@ -830,7 +830,7 @@ class PyBuildExt(build_ext): # 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? |