[Python-checkins] r85645 - in python/branches/py3k: Misc/NEWS setup.py
matthias.klose
python-checkins at python.org
Sun Oct 17 15:22:33 CEST 2010
Author: matthias.klose
Date: Sun Oct 17 15:22:33 2010
New Revision: 85645
Log:
- Accept Oracle Berkeley DB 5.0 and 5.1 as backend for the dbm extension.
Modified:
python/branches/py3k/Misc/NEWS
python/branches/py3k/setup.py
Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS (original)
+++ python/branches/py3k/Misc/NEWS Sun Oct 17 15:22:33 2010
@@ -109,6 +109,8 @@
- 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?
=================================
Modified: python/branches/py3k/setup.py
==============================================================================
--- python/branches/py3k/setup.py (original)
+++ python/branches/py3k/setup.py Sun Oct 17 15:22:33 2010
@@ -729,7 +729,7 @@
# 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?
More information about the Python-checkins
mailing list