Skip to content

Commit

Permalink
find replace >py3.8 syntax to 3.8 syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed May 21, 2024
1 parent 22d475f commit 75e8fbe
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions nipype-auto-conv/specs/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,15 @@ find_replace:
- ["class _ReadDWIMetadataOutputSpec.+?(?=\\n\\n)", ""]
- ["dataset = wf_inputs\\.get\\(.*?_datalad_get\\(\\w+\\)", ""]
- ["DWIDenoise", "DwiDenoise"]
- [
"dict\\[int, \\(float, float\\)\\]",
"ty.Dict[int, ty.Tuple[float, float]]",
]
- [
"dict\\[str, float \\| np.ndarray\\]",
"ty.Dict[str, ty.Union[float, np.ndarray]]",
]
- ["\\bdict\\[", "ty.Dict["]
omit_modules:
- "mriqc.config"
import_find_replace:
Expand Down

0 comments on commit 75e8fbe

Please sign in to comment.