In addition to check for presence of a particular python module during ./waf configure
, I need to also check for it to be of minimum version number.
This is what I'm already doing in my wscript
:
def configure(cfg):
cfg.load('python')
cfg.check_python_module('some_module')
How can I achieve this?