We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a7452e commit e03466fCopy full SHA for e03466f
nipype/interfaces/base/core.py
@@ -183,7 +183,7 @@ def __init__(
183
# Create input spec, disable any defaults that are unavailable due to
184
# version, and then apply the inputs that were passed.
185
self.inputs = self.input_spec()
186
- unavailable_traits = self._check_version_requirements(self.inputs)
+ unavailable_traits = self._check_version_requirements(self.inputs, raise_exception=False)
187
if unavailable_traits:
188
self.inputs.traitset(**{k: Undefined for k in unavailable_traits})
189
self.inputs.traitset(**inputs)
0 commit comments