/usr/share/pyshared/mvpa2/base/externals.py is in python-mvpa2 2.1.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 | # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
# vi: set ft=python sts=4 ts=4 sw=4 et:
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
#
# See COPYING file distributed along with the PyMVPA package for the
# copyright and license terms.
#
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
"""Helper to verify presence of external libraries and modules
"""
__docformat__ = 'restructuredtext'
import os
import numpy as np # NumPy is required anyways
from mvpa2.base import warning
from mvpa2 import cfg
from mvpa2.misc.support import SmartVersion
if __debug__:
from mvpa2.base import debug
class _VersionsChecker(dict):
"""Helper class to check the versions of the available externals
"""
def __init__(self, *args, **kwargs):
self._KNOWN = {}
dict.__init__(self, *args, **kwargs)
def __getitem__(self, key):
if not self.has_key(key):
if key in self._KNOWN:
# run registered procedure to obtain versions
self._KNOWN[key]()
else:
exists(key, force=True, raise_=True)
return super(_VersionsChecker, self).__getitem__(key)
versions = _VersionsChecker()
"""Versions of available externals, as tuples
"""
def __assign_numpy_version():
"""Check if numpy is present (it must be) an if it is -- store its version
"""
import numpy as np
versions['numpy'] = SmartVersion(np.__version__)
def __assign_scipy_version():
# To don't allow any crappy warning to sneak in
import warnings
warnings.simplefilter('ignore', DeprecationWarning)
try:
import scipy as sp
except:
warnings.simplefilter('default', DeprecationWarning)
raise
warnings.simplefilter('default', DeprecationWarning)
versions['scipy'] = SmartVersion(sp.__version__)
def __check_scipy():
"""Check if scipy is present an if it is -- store its version
"""
exists('numpy', raise_=True)
__assign_numpy_version()
__assign_scipy_version()
import scipy as sp
def _suppress_scipy_warnings():
# Infiltrate warnings if necessary
numpy_ver = versions['numpy']
scipy_ver = versions['scipy']
# There is way too much deprecation warnings spit out onto the
# user. Lets assume that they should be fixed by scipy 0.7.0 time
if scipy_ver >= "0.6.0" and scipy_ver < "0.7.0" \
and numpy_ver > "1.1.0":
import warnings
if not __debug__ or (__debug__ and not 'PY' in debug.active):
if __debug__:
debug('EXT', "Setting up filters for numpy DeprecationWarnings")
filter_lines = [
('NumpyTest will be removed in the next release.*',
DeprecationWarning),
('PyArray_FromDims: use PyArray_SimpleNew.',
DeprecationWarning),
('PyArray_FromDimsAndDataAndDescr: use PyArray_NewFromDescr.',
DeprecationWarning),
# Trick re.match, since in warnings absent re.DOTALL in re.compile
('[\na-z \t0-9]*The original semantics of histogram is scheduled to be.*'
'[\na-z \t0-9]*', Warning) ]
for f, w in filter_lines:
warnings.filterwarnings('ignore', f, w)
def __assign_mdp_version():
"""Check if mdp is present (it must be) an if it is -- store its version
"""
import mdp
ver = mdp.__version__
if SmartVersion(ver) == "2.5" and not hasattr(mdp.nodes, 'IdentityNode'):
# Thanks to Yarik's shipment of svn snapshots into Debian we
# can't be sure if that was already released version, since
# mdp guys didn't use -dev suffix
ver += '-dev'
versions['mdp'] = SmartVersion(ver)
def __assign_nibabel_version():
import nibabel
versions['nibabel'] = SmartVersion(nibabel.__version__)
def __check_pywt(features=None):
"""Check for available functionality within pywt
Parameters
----------
features : list of str
List of known features to check such as 'wp reconstruct',
'wp reconstruct fixed'
"""
import pywt
import numpy as np
data = np.array([ 0.57316901, 0.65292526, 0.75266733, 0.67020084, 0.46505364,
0.76478331, 0.33034164, 0.49165547, 0.32979941, 0.09696717,
0.72552711, 0.4138999 , 0.54460628, 0.786351 , 0.50096306,
0.72436454, 0.2193098 , -0.0135051 , 0.34283984, 0.65596245,
0.49598417, 0.39935064, 0.26370727, 0.05572373, 0.40194438,
0.47004551, 0.60327258, 0.25628266, 0.32964893, 0.24009889,])
mode = 'per'
wp = pywt.WaveletPacket(data, 'sym2', mode)
wp2 = pywt.WaveletPacket(data=None, wavelet='sym2', mode=mode)
try:
for node in wp.get_level(2): wp2[node.path] = node.data
except:
raise ImportError, \
"Failed to reconstruct WP by specifying data in the layer"
if 'wp reconstruct fixed' in features:
rec = wp2.reconstruct()
if np.linalg.norm(rec[:len(data)] - data) > 1e-3:
raise ImportError, \
"Failed to reconstruct WP correctly"
return True
def __check_libsvm_verbosity_control():
"""Check for available verbose control functionality
"""
import mvpa2.clfs.libsvmc._svmc as _svmc
try:
_svmc.svm_set_verbosity(0)
except:
raise ImportError, "Provided version of libsvm has no way to control " \
"its level of verbosity"
def __assign_shogun_version():
"""Assign shogun versions
"""
if 'shogun' in versions:
return
import shogun.Classifier as __sc
versions['shogun:rev'] = __sc.Version_get_version_revision()
ver = __sc.Version_get_version_release().lstrip('v')
versions['shogun:full'] = ver
if '_' in ver:
ver = ver[:ver.index('_')]
versions['shogun'] = ver
def __check_shogun(bottom_version, custom_versions=[]):
"""Check if version of shogun is high enough (or custom known) to
be enabled in the testsuite
Parameters
----------
bottom_version : int
Bottom version which must be satisfied
custom_versions : list of int
Arbitrary list of versions which could got patched for
a specific issue
"""
import shogun.Classifier as __sc
ver = __sc.Version_get_version_revision()
__assign_shogun_version()
if (ver in custom_versions) or (ver >= bottom_version):
return True
else:
raise ImportError, 'Version %s is smaller than needed %s' % \
(ver, bottom_version)
def __assign_nipy_version():
import nipy
versions['nipy'] = SmartVersion(nipy.__version__)
def __check_nipy_neurospin():
from nipy.neurospin.utils import emp_nul
def __assign_skl_version():
try:
import sklearn as skl
except ImportError:
# Let's try older space
import scikits.learn as skl
if skl.__doc__ is None or skl.__doc__.strip() == "":
raise ImportError("Verify your installation of scikits.learn. "
"Its docstring is empty -- could be that only -lib "
"was installed without the native Python modules")
versions['skl'] = SmartVersion(skl.__version__)
def __check_weave():
"""Apparently presence of scipy is not sufficient since some
versions experience problems. E.g. in Sep,Oct 2008 lenny's weave
failed to work. May be some other converter could work (? See
http://lists.debian.org/debian-devel/2008/08/msg00730.html for a
similar report.
Following simple snippet checks compilation of the basic code using
weave
"""
try:
from scipy import weave
except OSError, e:
raise ImportError(
"Weave cannot be used due to failure to import because of %s"
% e)
from scipy.weave import converters, build_tools
import numpy as np
# to shut weave up
import sys
# we can't rely on weave at all at the restoring argv. On etch box
# restore_sys_argv() is apparently is insufficient
oargv = sys.argv[:]
ostdout = sys.stdout
if not( __debug__ and 'EXT_' in debug.active):
from StringIO import StringIO
sys.stdout = StringIO()
# *nix specific solution to shut weave up.
# Some users must complain and someone
# needs to fix this to become more generic.
cargs = [">/dev/null", "2>&1"]
else:
cargs = []
fmsg = None
try:
data = np.array([1,2,3])
counter = weave.inline("data[0]=fabs(-1);", ['data'],
type_converters=converters.blitz,
verbose=0,
extra_compile_args=cargs,
compiler = 'gcc')
except Exception, e:
fmsg = "Failed to build simple weave sample." \
" Exception was %s" % str(e)
sys.stdout = ostdout
# needed to fix sweave which might "forget" to restore sysv
# build_tools.restore_sys_argv()
sys.argv = oargv
if fmsg is not None:
raise ImportError, fmsg
else:
return "Everything is cool"
def __check_atlas_family(family):
# XXX I guess pylint will dislike it a lot
from mvpa2.atlases.warehouse import KNOWN_ATLAS_FAMILIES
names, pathpattern = KNOWN_ATLAS_FAMILIES[family]
filename = pathpattern % {'name':names[0]}
if not os.path.exists(filename):
raise ImportError, "Cannot find file %s for atlas family %s" \
% (filename, family)
pass
def __check_stablerdist():
import scipy.stats
import numpy as np
## Unfortunately 0.7.0 hasn't fixed the issue so no chance but to do
## a proper numerical test here
try:
scipy.stats.rdist(1.32, 0, 1).cdf(-1.0 + np.finfo(float).eps)
# Actually previous test is insufficient for 0.6, so enabling
# elderly test on top
# ATM all known implementations which implement custom cdf for
# rdist are misbehaving, so there should be no _cdf
if '_cdf' in scipy.stats.distributions.rdist_gen.__dict__.keys():
raise ImportError, \
"scipy.stats carries misbehaving rdist distribution"
except ZeroDivisionError:
raise RuntimeError, "RDist in scipy is still unstable on the boundaries"
def __check_rv_discrete_ppf():
"""Unfortunately 0.6.0-12 of scipy pukes on simple ppf
"""
import scipy.stats
try:
bdist = scipy.stats.binom(100, 0.5)
bdist.ppf(0.9)
except TypeError:
raise RuntimeError, "pmf is broken in discrete dists of scipy.stats"
def __check_in_ipython():
# figure out if ran within IPython
if '__IPYTHON__' in globals()['__builtins__']:
return
raise RuntimeError, "Not running in IPython session"
def __assign_ipython_version():
ipy_version = None
try:
# Development post 0.11 version finally carries
# conventional one
import IPython
ipy_version = IPython.__version__
except:
try:
from IPython import Release
ipy_version = Release.version
except:
pass
pass
versions['ipython'] = SmartVersion(ipy_version)
def __check_openopt():
try:
import openopt as _
return
except ImportError:
pass
import scikits.openopt as _
return
def _set_matplotlib_backend():
"""Check if we have custom backend to set and it is different
from current one
"""
backend = cfg.get('matplotlib', 'backend')
if backend:
import matplotlib as mpl
mpl_backend = mpl.get_backend().lower()
if mpl_backend != backend.lower():
if __debug__:
debug('EXT_', "Trying to set matplotlib backend to %s" % backend)
mpl.use(backend)
import warnings
# And disable useless warning from matplotlib in the future
warnings.filterwarnings(
'ignore', 'This call to matplotlib.use() has no effect.*',
UserWarning)
elif __debug__:
debug('EXT_',
"Not trying to set matplotlib backend to %s since it was "
"already set" % backend)
def __assign_matplotlib_version():
"""Check for matplotlib version and set backend if requested."""
import matplotlib
versions['matplotlib'] = SmartVersion(matplotlib.__version__)
_set_matplotlib_backend()
def __check_pylab():
"""Check if matplotlib is there and then pylab"""
exists('matplotlib', raise_='always')
import pylab as pl
def __check_pylab_plottable():
"""Simple check either we can plot anything using pylab.
Primary use in unittests
"""
try:
exists('pylab', raise_='always')
import pylab as pl
fig = pl.figure()
pl.plot([1,2], [1,2])
pl.close(fig)
except:
raise RuntimeError, "Cannot plot in pylab"
return True
def __check_griddata():
"""griddata might be independent module or part of mlab
"""
try:
from griddata import griddata as __
return True
except ImportError:
if __debug__:
debug('EXT_', 'No python-griddata available')
from matplotlib.mlab import griddata as __
return True
def __check_reportlab():
import reportlab as rl
versions['reportlab'] = SmartVersion(rl.Version)
def __check_pprocess():
import pprocess as pp
versions['pprocess'] = SmartVersion(pp.__version__)
def __check_rpy():
"""Check either rpy is available and also set it for the sane execution
"""
#import rpy_options
#rpy_options.set_options(VERBOSE=False, SETUP_READ_CONSOLE=False) # SETUP_WRITE_CONSOLE=False)
#rpy_options.set_options(VERBOSE=False, SETUP_WRITE_CONSOLE=False) # SETUP_WRITE_CONSOLE=False)
# if not cfg.get('rpy', 'read_console', default=False):
# print "no read"
# rpy_options.set_options(SETUP_READ_CONSOLE=False)
# if not cfg.get('rpy', 'write_console', default=False):
# print "no write"
# rpy_options.set_options(SETUP_WRITE_CONSOLE=False)
import rpy
if not cfg.getboolean('rpy', 'interactive', default=True) \
and (rpy.get_rpy_input() is rpy.rpy_io.rpy_input):
if __debug__:
debug('EXT_', "RPy: providing dummy callback for input to return '1'")
def input1(*args): return "1" # which is "1: abort (with core dump, if enabled)"
rpy.set_rpy_input(input1)
def _R_library(libname):
import rpy2.robjects as ro
try:
if not tuple(ro.r(
"suppressMessages(suppressWarnings(require(%r, quiet=TRUE)))"
% libname))[0]:
raise ImportError("It seems that R cannot load library %r"
% libname)
except Exception, e:
raise ImportError("Failed to load R library %r due to %s"
% (libname, e))
def __check_rpy2():
"""Check either rpy2 is available and also set it for the sane execution
"""
import rpy2
versions['rpy2'] = SmartVersion(rpy2.__version__)
import rpy2.robjects
r = rpy2.robjects.r
r.options(warn=cfg.get_as_dtype('rpy', 'warn', dtype=int, default=-1))
# To shut R up while it is importing libraries to do not ruin out
# doctests
r.library = _R_library
def __check_liblapack_so():
"""Check either we could load liblapack.so library via ctypes
"""
from ctypes import cdll
try:
lapacklib = cdll.LoadLibrary('liblapack.so')
except OSError, e:
# reraise with exception type we catch/handle while testing externals
raise RuntimeError("Failed to import liblapack.so: %s" % e)
# contains list of available (optional) external classifier extensions
_KNOWN = {'libsvm':'import mvpa2.clfs.libsvmc._svm as __; x=__.seq_to_svm_node',
'libsvm verbosity control':'__check_libsvm_verbosity_control();',
'nibabel':'__assign_nibabel_version()',
'ctypes':'import ctypes as __',
'liblapack.so': "__check_liblapack_so()",
'shogun':'__assign_shogun_version()',
'shogun.krr': '__assign_shogun_version(); import shogun.Regression as __; x=__.KRR',
'shogun.mpd': '__assign_shogun_version(); import shogun.Classifier as __; x=__.MPDSVM',
'shogun.lightsvm': '__assign_shogun_version(); import shogun.Classifier as __; x=__.SVMLight',
'shogun.svmocas': '__assign_shogun_version(); import shogun.Classifier as __; x=__.SVMOcas',
'shogun.svrlight': '__assign_shogun_version(); from shogun.Regression import SVRLight as __',
'numpy': "__assign_numpy_version()",
'scipy': "__check_scipy()",
'good scipy.stats.rdist': "__check_stablerdist()",
'good scipy.stats.rv_discrete.ppf': "__check_rv_discrete_ppf()",
'weave': "__check_weave()",
'pywt': "import pywt as __",
'pywt wp reconstruct': "__check_pywt(['wp reconstruct'])",
'pywt wp reconstruct fixed': "__check_pywt(['wp reconstruct fixed'])",
#'rpy': "__check_rpy()",
'rpy2': "__check_rpy2()",
'lars': "exists('rpy2', raise_='always');" \
"import rpy2.robjects; rpy2.robjects.r.library('lars')",
'mass': "exists('rpy2', raise_='always');" \
"import rpy2.robjects; rpy2.robjects.r.library('MASS')",
'elasticnet': "exists('rpy2', raise_='always'); "\
"import rpy2.robjects; rpy2.robjects.r.library('elasticnet')",
'glmnet': "exists('rpy2', raise_='always'); " \
"import rpy2.robjects; rpy2.robjects.r.library('glmnet')",
'cran-energy': "exists('rpy2', raise_='always'); " \
"import rpy2.robjects; rpy2.robjects.r.library('energy')",
'matplotlib': "__assign_matplotlib_version()",
'pylab': "__check_pylab()",
'pylab plottable': "__check_pylab_plottable()",
'openopt': "__check_openopt()",
'skl': "__assign_skl_version()",
'mdp': "__assign_mdp_version()",
'mdp ge 2.4': "from mdp.nodes import LLENode as __",
'sg_fixedcachesize': "__check_shogun(3043, [2456])",
# 3318 corresponds to release 0.6.4
'sg ge 0.6.4': "__check_shogun(3318)",
# 3377 corresponds to release 0.6.5
'sg ge 0.6.5': "__check_shogun(3377)",
'hcluster': "import hcluster as __",
'griddata': "__check_griddata()",
'cPickle': "import cPickle as __",
'gzip': "import gzip as __",
'lxml': "from lxml import objectify as __",
'atlas_pymvpa': "__check_atlas_family('pymvpa')",
'atlas_fsl': "__check_atlas_family('fsl')",
'ipython': "__assign_ipython_version()",
'running ipython env': "__check_in_ipython()",
'reportlab': "__check_reportlab()",
'nose': "import nose as __",
'pprocess': "__check_pprocess()",
'h5py': "import h5py as __",
'nipy': "__assign_nipy_version()",
'nipy.neurospin': "__check_nipy_neurospin()",
'statsmodels': 'import statsmodels.api as __',
}
def exists(dep, force=False, raise_=False, issueWarning=None):
"""
Test whether a known dependency is installed on the system.
This method allows us to test for individual dependencies without
testing all known dependencies. It also ensures that we only test
for a dependency once.
Parameters
----------
dep : string or list of string
The dependency key(s) to test.
force : boolean
Whether to force the test even if it has already been
performed.
raise_ : boolean
Whether to raise RuntimeError if dependency is missing.
If True, it is still conditioned on the global setting
MVPA_EXTERNALS_RAISE_EXCEPTION, while would raise exception
if missing despite the configuration if 'always'.
issueWarning : string or None or True
If string, warning with given message would be thrown.
If True, standard message would be used for the warning
text.
"""
# if we are provided with a list of deps - go through all of them
if isinstance(dep, list) or isinstance(dep, tuple):
results = [ exists(dep_, force, raise_) for dep_ in dep ]
return bool(reduce(lambda x,y: x and y, results, True))
# where to look in cfg
cfgid = 'have ' + dep
# pre-handle raise_ according to the global settings and local argument
if isinstance(raise_, str):
if raise_.lower() == 'always':
raise_ = True
else:
raise ValueError("Unknown value of raise_=%s. "
"Must be bool or 'always'" % raise_)
else: # must be bool conditioned on the global settings
raise_ = raise_ \
and cfg.getboolean('externals', 'raise exception', True)
# prevent unnecessarry testing
if cfg.has_option('externals', cfgid) \
and not cfg.getboolean('externals', 'retest', default='no') \
and not force:
if __debug__:
debug('EXT', "Skip retesting for '%s'." % dep)
# check whether an exception should be raised, even though the external
# was already tested previously
if not cfg.getboolean('externals', cfgid) and raise_:
raise RuntimeError, "Required external '%s' was not found" % dep
return cfg.getboolean('externals', cfgid)
# determine availability of external (non-cached)
# default to 'not found'
result = False
if not _KNOWN.has_key(dep):
raise ValueError, "%s is not a known dependency key." % (dep)
else:
# try and load the specific dependency
if __debug__:
debug('EXT', "Checking for the presence of %s" % dep)
# Exceptions which are silently caught while running tests for externals
_caught_exceptions = [ImportError, AttributeError, RuntimeError]
try:
# Suppress NumPy warnings while testing for externals
olderr = np.seterr(all="ignore")
estr = ''
try:
exec _KNOWN[dep]
result = True
except tuple(_caught_exceptions), e:
estr = ". Caught exception was: " + str(e)
except Exception, e:
# Add known ones by their names so we don't need to
# actually import anything manually to get those classes
if e.__class__.__name__ in ['RPy_Exception', 'RRuntimeError',
'RPy_RException']:
_caught_exceptions += [e.__class__]
estr = ". Caught exception was: " + str(e)
else:
raise
finally:
# And restore warnings
np.seterr(**olderr)
if __debug__:
debug('EXT', "Presence of %s is%s verified%s" %
(dep, {True:'', False:' NOT'}[result], estr))
if not result:
if raise_:
raise RuntimeError, "Required external '%s' was not found" % dep
if issueWarning is not None \
and cfg.getboolean('externals', 'issue warning', True):
if issueWarning is True:
warning("Required external '%s' was not found" % dep)
else:
warning(issueWarning)
# store result in config manager
if not cfg.has_section('externals'):
cfg.add_section('externals')
if result:
cfg.set('externals', 'have ' + dep, 'yes')
else:
cfg.set('externals', 'have ' + dep, 'no')
return result
# Bind functions for some versions checkings
versions._KNOWN.update({
'numpy' : __assign_numpy_version,
'scipy' : __assign_scipy_version,
'nipy' : __assign_nipy_version,
'matplotlib': __assign_matplotlib_version,
'mdp' : __assign_mdp_version,
'ipython' : __assign_ipython_version,
'reportlab' : __check_reportlab,
'pprocess' : __check_pprocess,
'rpy2' : __check_rpy2,
'skl' : __assign_skl_version,
'shogun' : __assign_shogun_version,
'shogun:rev' : __assign_shogun_version,
'shogun:full' : __assign_shogun_version,
})
##REF: Name was automagically refactored
def check_all_dependencies(force=False, verbosity=1):
"""
Test for all known dependencies.
Parameters
----------
force : boolean
Whether to force the test even if it has already been
performed.
"""
# loop over all known dependencies
for dep in _KNOWN:
if not exists(dep, force):
if verbosity:
warning("%s is not available." % dep)
if __debug__:
debug('EXT', 'The following optional externals are present: %s' \
% [ k[5:] for k in cfg.options('externals')
if k.startswith('have') \
and cfg.getboolean('externals', k) == True ])
|