- Issue #15235: Allow Berkley DB versions up to 5.3 to build the dbm module.
This commit is contained in:
parent
487f191b79
commit
15bac0f4da
|
@ -51,6 +51,8 @@ Build
|
||||||
- Issue #14330: For cross builds, don't use host python, use host search paths
|
- Issue #14330: For cross builds, don't use host python, use host search paths
|
||||||
for host compiler.
|
for host compiler.
|
||||||
|
|
||||||
|
- Issue #15235: Allow Berkley DB versions up to 5.3 to build the dbm module.
|
||||||
|
|
||||||
|
|
||||||
What's New in Python 3.3.0 Beta 1?
|
What's New in Python 3.3.0 Beta 1?
|
||||||
==================================
|
==================================
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -830,7 +830,7 @@ class PyBuildExt(build_ext):
|
||||||
# a release. Most open source OSes come with one or more
|
# a release. Most open source OSes come with one or more
|
||||||
# versions of BerkeleyDB already installed.
|
# versions of BerkeleyDB already installed.
|
||||||
|
|
||||||
max_db_ver = (5, 1)
|
max_db_ver = (5, 3)
|
||||||
min_db_ver = (3, 3)
|
min_db_ver = (3, 3)
|
||||||
db_setup_debug = False # verbose debug prints from this script?
|
db_setup_debug = False # verbose debug prints from this script?
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue