diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-01-28 23:21:00 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-01-28 23:21:00 (GMT) |
commit | f866bac73c6a6f6a15ef2217cb5ac9f3160a9378 (patch) | |
tree | b3d01c2e3f6f054e344b24a1d15fab8504e4f7a2 /setup.py | |
parent | bf3d1d5dc8ef84c2ef43c7785d3caa2b82f32d20 (diff) | |
download | cpython-f866bac73c6a6f6a15ef2217cb5ac9f3160a9378.zip cpython-f866bac73c6a6f6a15ef2217cb5ac9f3160a9378.tar.gz cpython-f866bac73c6a6f6a15ef2217cb5ac9f3160a9378.tar.bz2 |
Disable use of BerkeleyDB 4.6.x to see what the odd platform buildbots
think. In particular, neal norwitz has traced an Ubuntu sparc64 crash
to the Lib/test/bsddb/test_basics.py test when opening a db with DB_THREAD.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -681,7 +681,10 @@ class PyBuildExt(build_ext): # a release. Most open source OSes come with one or more # versions of BerkeleyDB already installed. - max_db_ver = (4, 6) + 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. min_db_ver = (3, 3) db_setup_debug = False # verbose debug prints from this script? |