Skip to content

Commit d76eb6e

Browse files
committed
updated pydra tasks mrtrix3 version in docs to 3.1
1 parent ce99186 commit d76eb6e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

docs/source/explanation/conditional-lazy.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Lazy fields
1313

1414
Pydra workflows are constructed by the assignment of "lazy field" placeholders from
1515
the outputs of upstream nodes to the inputs of downstream nodes. These placeholders,
16-
which are instances of the :class:`pydra.engine.specs.LazyField` class, are replaced
16+
which are instances of the :class:`pydra.engine.lazy.LazyField` class, are replaced
1717
by the actual values they represent when the workflow is run.
1818

1919

docs/source/reference/api.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ Workflows
2525
:undoc-members:
2626
:show-inheritance:
2727

28-
Specification classes
29-
---------------------
28+
Engine classes
29+
--------------
3030

31-
.. automodule:: pydra.engine.specs
31+
.. automodule:: pydra.engine
3232
:members:
3333
:undoc-members:
3434
:show-inheritance:

docs/source/tutorial/1-getting-started.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@
151151
"metadata": {},
152152
"outputs": [],
153153
"source": [
154-
"from pydra.tasks.mrtrix3.v3_0 import MrGrid\n",
154+
"from pydra.tasks.mrtrix3.v3_1 import MrGrid\n",
155155
"\n",
156156
"# Instantiate the task, \"splitting\" over all NIfTI files in the test directory\n",
157157
"# by splitting the \"input\" input field over all files in the directory\n",
@@ -236,7 +236,7 @@
236236
"metadata": {},
237237
"outputs": [],
238238
"source": [
239-
"from pydra.tasks.mrtrix3.v3_0 import MrGrid\n",
239+
"from pydra.tasks.mrtrix3.v3_1 import MrGrid\n",
240240
"\n",
241241
"if (\n",
242242
" __name__ == \"__main__\"\n",

docs/source/tutorial/2-advanced-execution.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@
191191
"from pprint import pprint\n",
192192
"from fileformats.medimage import Nifti1\n",
193193
"from pydra.engine.submitter import Submitter\n",
194-
"from pydra.tasks.mrtrix3.v3_0 import MrGrid\n",
194+
"from pydra.tasks.mrtrix3.v3_1 import MrGrid\n",
195195
"\n",
196196
"# Make a temporary directory\n",
197197
"test_dir = Path(tempfile.mkdtemp())\n",
@@ -323,7 +323,7 @@
323323
"outputs": [],
324324
"source": [
325325
"import tempfile\n",
326-
"from pydra.tasks.mrtrix3.v3_0 import MrGrid\n",
326+
"from pydra.tasks.mrtrix3.v3_1 import MrGrid\n",
327327
"from pydra.environments import docker\n",
328328
"\n",
329329
"test_dir = tempfile.mkdtemp()\n",

docs/source/tutorial/6-workflow.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@
484484
"import fileformats.medimage_mrtrix3 as mrtrix3\n",
485485
"from pydra.environments import docker\n",
486486
"from pydra.compose import workflow, python\n",
487-
"from pydra.tasks.mrtrix3.v3_0 import MrConvert, MrThreshold\n",
487+
"from pydra.tasks.mrtrix3.v3_1 import MrConvert, MrThreshold\n",
488488
"\n",
489489
"MRTRIX2NUMPY_DTYPES = {\n",
490490
" \"Int8\": np.dtype(\"i1\"),\n",

0 commit comments

Comments
 (0)