diff options
author | Matthias Klose <doko@ubuntu.com> | 2010-03-15 12:46:18 +0000 |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2010-03-15 12:46:18 +0000 |
commit | 54cc539a2b06d4fc22358862dc72f3c9ede7b2d4 (patch) | |
tree | 536c3885d9e8123ff2f7b96499f0ad33ee787d7e /setup.py | |
parent | f56813997fb546207ef1f9d15325dff2929dc455 (diff) | |
download | cpython-git-54cc539a2b06d4fc22358862dc72f3c9ede7b2d4.tar.gz |
- Issue #6949: Allow the _bsddb extension to be built with db-4.8.x.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -707,7 +707,7 @@ class PyBuildExt(build_ext): # a release. Most open source OSes come with one or more # versions of BerkeleyDB already installed. - max_db_ver = (4, 7) + max_db_ver = (4, 8) min_db_ver = (3, 3) db_setup_debug = False # verbose debug prints from this script? |