Skip to content

Commit 7e0de19

Browse files
authored
Merge pull request #32 from nipype/auto-gen
Fixed import path in fileformats converter to point to v3_1
2 parents 34db471 + 80d83ec commit 7e0de19

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/ci-cd.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,6 @@ jobs:
125125
-e ./related-packages/fileformats
126126
-e ./related-packages/fileformats-extras
127127
-e '.[test]'
128-
- name: Install development Pydra
129-
run: pip install --no-deps git+https://github.com/nipype/pydra.git@develop
130128
- name: Test with pytest
131129
run: pytest -sv pydra/tasks/mrtrix3 --cov pydra.tasks.mrtrix3 --cov-report xml
132130
- uses: codecov/codecov-action@v2

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ name = "pydra-tasks-mrtrix3"
77
description = "pydra-tasks-mrtrix3 contains Pydra task specifications for MRtrix3 tools"
88
readme = "README.rst"
99
requires-python = ">=3.11"
10-
dependencies = ["fileformats-medimage_mrtrix3 >=3.0.4a5", "numpy", "pydra"]
10+
dependencies = [
11+
"fileformats-medimage_mrtrix3 >=3.0.4a5",
12+
"numpy",
13+
"pydra>=1.0a2"
14+
]
1115
license = { file = "LICENSE" }
1216
authors = [{ name = "Thomas G. Close", email = "[email protected]" }]
1317
maintainers = [{ name = "Thomas G. Close", email = "[email protected]" }]

related-packages/fileformats-extras/fileformats/extras/medimage_mrtrix3/converters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
ImageFormatGz as MrtrixImageGz,
88
)
99

10-
from pydra.tasks.mrtrix3.v3_0 import MrConvert
10+
from pydra.tasks.mrtrix3.v3_1 import MrConvert
1111

1212

1313
def out_file_template(fileformat: ty.Type[FileSet]) -> str:

0 commit comments

Comments
 (0)