- Issue #6949: Allow the _dbm extension to be built with db 4.8.x.
This commit is contained in:
parent
68f52178d9
commit
9550aa1c81
|
@ -781,6 +781,8 @@ Library
|
||||||
Extension Modules
|
Extension Modules
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Issue #6949: Allow the _dbm extension to be built with db 4.8.x.
|
||||||
|
|
||||||
- Issue #6544: fix a reference leak in the kqueue implementation's error
|
- Issue #6544: fix a reference leak in the kqueue implementation's error
|
||||||
handling.
|
handling.
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -651,7 +651,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 = (4, 7)
|
max_db_ver = (4, 8)
|
||||||
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