From 81bcdc9bf8728d64211ecbf826aca03edad529ed Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Tue, 7 Oct 2008 12:23:57 +0100 Subject: [PATCH] Fix compat. with Python < 2.5 (fixes ns-old regression failure) --- bindings/python/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/wscript b/bindings/python/wscript index 8b1272ac7..9b37f64a7 100644 --- a/bindings/python/wscript +++ b/bindings/python/wscript @@ -22,7 +22,7 @@ else: os.environ['PYTHONPATH'] = LOCAL_PYBINDGEN_PATH ## https://launchpad.net/pybindgen/ -REQUIRED_PYBINDGEN_VERSION = (0, 9, 0, 593) +REQUIRED_PYBINDGEN_VERSION = (0, 9, 0, 595) REQUIRED_PYGCCXML_VERSION = (0, 9, 5)