Commit ef2436fb authored by Benjamin Peterson's avatar Benjamin Peterson

check for berkelydb versions besides 4.3 (#18734)

parent bcf2fa7e
...@@ -908,7 +908,7 @@ class PyBuildExt(build_ext): ...@@ -908,7 +908,7 @@ class PyBuildExt(build_ext):
if allow_db_ver((5, x)): if allow_db_ver((5, x)):
yield x yield x
elif major == 4: elif major == 4:
for x in range(max_db_ver[1]+1): for x in range(9):
if allow_db_ver((4, x)): if allow_db_ver((4, x)):
yield x yield x
elif major == 3: elif major == 3:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment