Skip to content

Commit 71b6a12

Browse files
author
gregory.p.smith
committed
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. git-svn-id: http://svn.python.org/projects/python/trunk@60403 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent eaf7f49 commit 71b6a12

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,10 @@ def detect_modules(self):
681681
# a release. Most open source OSes come with one or more
682682
# versions of BerkeleyDB already installed.
683683

684-
max_db_ver = (4, 6)
684+
max_db_ver = (4, 5) # XXX(gregory.p.smith): 4.6 "works" but seems to
685+
# have issues on many platforms. I've temporarily
686+
# disabled 4.6 to see what the odd platform
687+
# buildbots say.
685688
min_db_ver = (3, 3)
686689
db_setup_debug = False # verbose debug prints from this script?
687690

0 commit comments

Comments
 (0)