[Python-checkins] r63718 - python/trunk/setup.py

gregory.p.smith python-checkins at python.org
Mon May 26 21:29:14 CEST 2008


Author: gregory.p.smith
Date: Mon May 26 21:29:14 2008
New Revision: 63718

Log:
Allow BerlekeyDB up through 4.7.  I doubt any of our unixy buildbots even have
that installed yet but the module code supports it.


Modified:
   python/trunk/setup.py

Modified: python/trunk/setup.py
==============================================================================
--- python/trunk/setup.py	(original)
+++ python/trunk/setup.py	Mon May 26 21:29:14 2008
@@ -687,10 +687,7 @@
         # a release.  Most open source OSes come with one or more
         # versions of BerkeleyDB already installed.
 
-        max_db_ver = (4, 5)  # XXX(gregory.p.smith): 4.6 "works" but seems to
-                             # have issues on many platforms.  I've temporarily
-                             # disabled 4.6 to see what the odd platform
-                             # buildbots say.
+        max_db_ver = (4, 7)
         min_db_ver = (3, 3)
         db_setup_debug = False   # verbose debug prints from this script?
 


More information about the Python-checkins mailing list