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.
2 parents 97534b3 + b72306e commit 17eadd4Copy full SHA for 17eadd4
niworkflows/interfaces/reportlets/__init__.py
@@ -0,0 +1,7 @@
1
+import warnings
2
+
3
+msg = (
4
+ 'Niworkflows will be deprecating reporting in favor of a standalone library "nireports".'
5
+)
6
7
+warnings.warn(msg, PendingDeprecationWarning)
niworkflows/viz/__init__.py
@@ -1,6 +1,14 @@
# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
# vi: set ft=python sts=4 ts=4 sw=4 et:
from .plots import plot_carpet
from .utils import SVGNS
8
9
+ 'Niworkflows will be deprecating visualizations in favor of a standalone library "nireports".'
10
11
12
13
14
__all__ = ["plot_carpet", "SVGNS"]
0 commit comments